Uses of Class
ca.weblite.objc.Client

Packages that use Client
Package
Description
 
  • Uses of Client in ca.weblite.objc

    Methods in ca.weblite.objc that return Client
    Modifier and Type
    Method
    Description
    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.setCoerceInputs(boolean coerceInputs)
    Deprecated.
    Use getRawClient() to get a client with coercion off.
    Client.setCoerceOutputs(boolean coerceOutputs)
    Deprecated.
    Use getRawClient() to get a client with coercion off.
    Methods in ca.weblite.objc with parameters of type Client
    Modifier and Type
    Method
    Description
    Proxy.setClient(Client client)
    Sets the client that should be used for sending messages to the peer object.
    Constructors in ca.weblite.objc with parameters of type Client
    Modifier
    Constructor
    Description
     
    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.