All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.util.yoga.YGPrintFunc Maven / Gradle / Ivy

There is a newer version: 3.3.5
Show newest version
/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.util.yoga;

import javax.annotation.*;

import org.lwjgl.system.*;

import static org.lwjgl.system.MemoryUtil.*;

/**
 * 

Type

* *

 * void (*) (
 *     YGNodeRef node
 * )
*/ public abstract class YGPrintFunc extends Callback implements YGPrintFuncI { /** * Creates a {@code YGPrintFunc} instance from the specified function pointer. * * @return the new {@code YGPrintFunc} */ public static YGPrintFunc create(long functionPointer) { YGPrintFuncI instance = Callback.get(functionPointer); return instance instanceof YGPrintFunc ? (YGPrintFunc)instance : new Container(functionPointer, instance); } /** Like {@link #create(long) create}, but returns {@code null} if {@code functionPointer} is {@code NULL}. */ @Nullable public static YGPrintFunc createSafe(long functionPointer) { return functionPointer == NULL ? null : create(functionPointer); } /** Creates a {@code YGPrintFunc} instance that delegates to the specified {@code YGPrintFuncI} instance. */ public static YGPrintFunc create(YGPrintFuncI instance) { return instance instanceof YGPrintFunc ? (YGPrintFunc)instance : new Container(instance.address(), instance); } protected YGPrintFunc() { super(SIGNATURE); } private YGPrintFunc(long functionPointer) { super(functionPointer); } private static final class Container extends YGPrintFunc { private final YGPrintFuncI delegate; Container(long functionPointer, YGPrintFuncI delegate) { super(functionPointer); this.delegate = delegate; } @Override public void invoke(long node) { delegate.invoke(node); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy