All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.core.MethodSignature

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.core.MethodSignature

public class MethodSignature
extends NativeObject
This class wraps the Objective-C class NSMethodSignature.


Constructor Index

 o MethodSignature()
This default constructor is equivalent to Objective-C's [[NSMethodSignature alloc] init].
 o MethodSignature(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.

Method Index

 o argumentTypeAtIndex(int)
A wrapper for the - _JavaWrapper_getArgumentTypeAtIndex: Objective-C instance method.
 o frameLength()
A wrapper for the - frameLength Objective-C instance method.
 o isOneway()
A wrapper for the - isOneway Objective-C instance method.
 o methodReturnLength()
A wrapper for the - methodReturnLength Objective-C instance method.
 o methodReturnType()
A wrapper for the - _JavaWrapper_methodReturnType Objective-C instance method.
 o numberOfArguments()
A wrapper for the - numberOfArguments Objective-C instance method.

Constructors

 o MethodSignature
 protected MethodSignature(boolean shouldAllocate,
                           int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o MethodSignature
 public MethodSignature()
This default constructor is equivalent to Objective-C's [[NSMethodSignature alloc] init].

Methods

 o numberOfArguments
 public native int numberOfArguments()
A wrapper for the - numberOfArguments Objective-C instance method.

 o frameLength
 public native int frameLength()
A wrapper for the - frameLength Objective-C instance method.

 o isOneway
 public native boolean isOneway()
A wrapper for the - isOneway Objective-C instance method.

 o methodReturnLength
 public native int methodReturnLength()
A wrapper for the - methodReturnLength Objective-C instance method.

 o argumentTypeAtIndex
 public native String argumentTypeAtIndex(int index)
A wrapper for the - _JavaWrapper_getArgumentTypeAtIndex: Objective-C instance method.

 o methodReturnType
 public native String methodReturnType()
A wrapper for the - _JavaWrapper_methodReturnType Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index