Uses of Interface
ca.weblite.objc.Peerable

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

    Subinterfaces of Peerable in ca.weblite.objc
    Modifier and Type
    Interface
    Description
    interface 
    An interface for objects that have an Objective-C peer, and that can be called from objective-C.
    Classes in ca.weblite.objc that implement Peerable
    Modifier and Type
    Class
    Description
    class 
    The base class for objects that can interact with the Objective-C runtime.
    class 
    A wrapper around a native (Objective-C) object that allows for sending messages from Java.
    Methods in ca.weblite.objc with parameters of type Peerable
    Modifier and Type
    Method
    Description
    static com.sun.jna.Pointer
    RuntimeUtils.addr(Peerable peer)
    Returns the pointer to the Native peer for a Peerable object.
    static com.sun.jna.Pointer
    RuntimeUtils.cls(Peerable peer)
    Returns a pointer to a class given a Peerable object which wraps the pointer.
    static String
    RuntimeUtils.clsName(Peerable peer)
    A wrapper for the clsName() method given a Peerable object that wraps the class pointer.
    static com.sun.jna.Pointer
    RuntimeUtils.sel(Peerable peer)
    Returns a pointer to the selector that is wrapped by a Peerable object.
    static String
    RuntimeUtils.selName(Peerable peer)
    Returns the name of a selector.
    Client.send(Peerable proxy, com.sun.jna.Pointer selector, Object... args)
    Sends a message to an Objective-C object.
    Client.send(Peerable proxy, String selector, Object... args)
    Sends a message to an Objective-C object.