ca.weblite.objc.Peerable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-objc-bridge Show documentation
Show all versions of java-objc-bridge Show documentation
A thin bridge that allows for two-way communication from Java to Objective-C.
package ca.weblite.objc;
import com.sun.jna.Pointer;
/**
* An interface for an object that has an Objective-C peer.
*
* @author shannah
* @version $Id: $Id
* @since 1.1
*/
public interface Peerable {
/**
* getPeer.
*
* @return a {@link com.sun.jna.Pointer} object.
*/
public Pointer getPeer();
/**
* setPeer.
*
* @param peer a {@link com.sun.jna.Pointer} object.
*/
public void setPeer(Pointer peer);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy