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

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

package jalse.entities.annotations;

import jalse.attributes.AttributeContainer;
import jalse.entities.Entity;
import jalse.entities.EntityContainer;
import jalse.entities.methods.NewEntityMethod;

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

/**
 * An {@link Entity} type annotation for:
 * 
    *
  • {@link EntityContainer#newEntity()}
  • *
  • {@link EntityContainer#newEntity(UUID)}
  • *
  • {@link EntityContainer#newEntity(Class)}
  • *
  • {@link EntityContainer#newEntity(AttributeContainer)}
  • *
  • {@link EntityContainer#newEntity(UUID, Class)}
  • *
  • {@link EntityContainer#newEntity(UUID, AttributeContainer)}
  • *
  • {@link EntityContainer#newEntity(Class, AttributeContainer)}
  • *
  • {@link EntityContainer#newEntity(UUID, Class, AttributeContainer)}
  • *
* See {@link NewEntityMethod} for acceptable method signatures. * * @author Elliot Ford * * @see NewEntityMethod * */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface NewEntity {}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy