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

jalse.entities.annotations.SetAttribute 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.SetAttributeFunction;
import jalse.entities.methods.SetAttributeMethod;

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#setOptAttribute(String, AttributeType, Object)}
  • *
  • {@link AttributeContainer#setAttribute(String, AttributeType, Object)}
  • *
  • {@link AttributeContainer#removeOptAttribute(String, AttributeType)}
  • *
  • {@link AttributeContainer#removeAttribute(String, AttributeType)}
  • *
* * See {@link SetAttributeFunction} for acceptable method signatures. * * @author Elliot Ford * * @see SetAttributeMethod * */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface SetAttribute { /** * Default name ({@code ""}). */ public static final String DEFAULT_NAME = ""; /** * Attribute type name. * * @return Name. * * @see SetAttribute#DEFAULT_NAME */ String name() default DEFAULT_NAME; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy