org.lwjgl.nuklear.NkPluginPaste Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-nuklear Show documentation
Show all versions of lwjgl-nuklear Show documentation
A minimal state immediate mode graphical user interface toolkit.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.nuklear;
import javax.annotation.*;
import org.lwjgl.system.*;
import static org.lwjgl.system.MemoryUtil.*;
/**
* Instances of this class may be set to the {@link NkClipboard} struct.
*
* Type
*
*
* void (*) (
* nk_handle handle,
* struct nk_text_edit *edit
* )
*/
public abstract class NkPluginPaste extends Callback implements NkPluginPasteI {
/**
* Creates a {@code NkPluginPaste} instance from the specified function pointer.
*
* @return the new {@code NkPluginPaste}
*/
public static NkPluginPaste create(long functionPointer) {
NkPluginPasteI instance = Callback.get(functionPointer);
return instance instanceof NkPluginPaste
? (NkPluginPaste)instance
: new Container(functionPointer, instance);
}
/** Like {@link #create(long) create}, but returns {@code null} if {@code functionPointer} is {@code NULL}. */
@Nullable
public static NkPluginPaste createSafe(long functionPointer) {
return functionPointer == NULL ? null : create(functionPointer);
}
/** Creates a {@code NkPluginPaste} instance that delegates to the specified {@code NkPluginPasteI} instance. */
public static NkPluginPaste create(NkPluginPasteI instance) {
return instance instanceof NkPluginPaste
? (NkPluginPaste)instance
: new Container(instance.address(), instance);
}
protected NkPluginPaste() {
super(SIGNATURE);
}
NkPluginPaste(long functionPointer) {
super(functionPointer);
}
private static final class Container extends NkPluginPaste {
private final NkPluginPasteI delegate;
Container(long functionPointer, NkPluginPasteI delegate) {
super(functionPointer);
this.delegate = delegate;
}
@Override
public void invoke(long handle, long edit) {
delegate.invoke(handle, edit);
}
}
}