
com.bugvm.javacpp.annotation.Function Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javacpp Show documentation
Show all versions of javacpp Show documentation
The bridge between BugVM and native libraries
The newest version!
package com.bugvm.javacpp.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import com.bugvm.javacpp.tools.Generator;
/**
* Overrides the detection of allocators, getters, and setters. Indicates to the
* {@link Generator} that we wish the method to call the corresponding C++ function.
*
* @see Allocator
* @see ArrayAllocator
* @see MemberGetter
* @see MemberSetter
* @see ValueSetter
* @see ValueGetter
* @see Generator
*
* @author Samuel Audet
*/
@Documented @Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface Function { }
© 2015 - 2025 Weber Informatics LLC | Privacy Policy