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

jalse.entities.annotations.GetAttribute Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package jalse.entities.annotations;

import jalse.attributes.AttributeContainer;
import jalse.attributes.AttributeType;
import jalse.entities.Entity;
import jalse.entities.functions.GetAttributeFunction;
import jalse.entities.methods.GetAttributeMethod;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * An {@link Entity} type annotation for:
 * 
    *
  • {@link AttributeContainer#getOptAttribute(String, AttributeType)}
  • *
  • {@link AttributeContainer#getAttribute(String, AttributeType)}
  • *
* * See {@link GetAttributeFunction} for acceptable method signatures. * * @author Elliot Ford * * @see GetAttributeMethod * */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface GetAttribute { /** * Default name ({@code ""}). */ public static final String DEFAULT_NAME = ""; /** * Attribute type name. * * @return Name. * * @see GetAttribute#DEFAULT_NAME */ String name() default DEFAULT_NAME; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy