Class NkPluginCopy

java.lang.Object
org.lwjgl.system.Callback
org.lwjgl.nuklear.NkPluginCopy
All Implemented Interfaces:
AutoCloseable, NkPluginCopyI, CallbackI, NativeResource, Pointer

public abstract class NkPluginCopy extends Callback implements NkPluginCopyI
Instances of this class may be set to the NkClipboard struct.

Type


 void (*NkPluginCopyI.invoke(long, long, int)) (
     nk_handle handle,
     char const *text,
     int len
 )
  • Method Details

    • create

      public static NkPluginCopy create(long functionPointer)
      Creates a NkPluginCopy instance from the specified function pointer.
      Returns:
      the new NkPluginCopy
    • createSafe

      @Nullable public static NkPluginCopy createSafe(long functionPointer)
      Like create, but returns null if functionPointer is NULL.
    • create

      public static NkPluginCopy create(NkPluginCopyI instance)
      Creates a NkPluginCopy instance that delegates to the specified NkPluginCopyI instance.