
com.artemis.annotations.FluidMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artemis-odb Show documentation
Show all versions of artemis-odb Show documentation
Fork of Artemis Entity System Framework.
The newest version!
package com.artemis.annotations;
import java.lang.annotation.*;
/**
* Customize how the fluid generator processes a component method.
*
* Is ignored when your fluid generator is not used in your project.
*
* @author Daan van Yperen
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
@Documented
public @interface FluidMethod {
/**
* Exclude method from fluid interface.
*/
boolean exclude() default false;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy