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

com.bugvm.javacpp.annotation.Function Maven / Gradle / Ivy

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