Package | Description |
---|---|
ca.weblite.objc |
Modifier and Type | Method and Description |
---|---|
Client |
Proxy.getClient()
Returns the client that is used by this Proxy object.
|
static Client |
Client.getInstance()
Retrieves the global reference to a client that has both input coercion
and output coercion enabled.
|
static Client |
Client.getRawClient()
Retrieves singleton instance to a simple client that has type coercion
disabled for both inputs and outputs.
|
Client |
Client.setCoerceInputs(boolean coerceInputs)
Set the coerceInputs flag.
|
Client |
Client.setCoerceOutputs(boolean coerceOutputs)
Sets the coerceOutputs flag.
|
Modifier and Type | Method and Description |
---|---|
Proxy |
Proxy.setClient(Client client)
Sets the client that should be used for sending messages to the
peer object.
|
Constructor and Description |
---|
NSObject(Client c)
Creates a null proxy using the specified client as the default client
with which to send messages to the objective-c runtime.
|
NSObject(Client c,
com.sun.jna.Pointer peer)
Creates a proxy for the specified objective-c object.
|
Proxy(Client client)
Creates a proxy for a Null pointer using the specified Client object.
|
Proxy(Client client,
com.sun.jna.Pointer peer)
Creates a proxy for the specified peer Objective-C object, using
the specified client to send messages to the peer.
|