Objective-Everything Release 5. Copyright ©1994-1998 by TipTop Software, Inc. All Rights Reserved.
The unparse command lets you peek at the ObjC runtime information.
If obj is a class object, unparse returns a string corresponding to the Objective-C-style @interface declaration for the class. If obj is a protocol, unparse returns a string corresponding to the @protocol declaration for the protocol. If obj is an object, then its class is unparsed.
The main introspection functionality is available via the Info submodule.
Returns a list of all class names which match the pattern.
Returns a list of all protocol names known to the Objective-Everything runtime system which match the pattern.
Returns a list of all objects names registered with the Objective-Everything runtime system which match the pattern.
Returns a list of all type names known to the system which match the pattern.
Returns a list of all function names known to the system which match the pattern.
Returns a list of all global variable names known to the system which match the pattern.
Returns a list of all constant names known to the system which match the pattern.
Returns a list of all method names in the class which match the pattern. To obtain method information for a specific instance o, simply use $o->{'isa'} as the clazz argument.
Returns a list of instance variable names declared in the class which match the pattern.
Returns a list of argument names for the specified method in class.
Returns a list of argument types for the specified method in class.
Returns method implementation body.
Returns language name in which the specified method is implemented.
Returns type of the specified instance variable in class.
Returns OS name.
Returns OS version.
Returns architecture name.
Returns the ObjPerl version number.
Returns TipTop contact information.
Returns TipTop copyright information.