saker.nest Documentation TaskDoc JavaDoc Packages
Annotation to specify information about a field of the annotated type.

The annotated type will have the specified field information added to it. This results in the annotated type declaring a field with the given name and information for scripting purposes.

The type is not required to actually declare a field with that name.

Methods
public boolean
deprecated() default false
Specifies if the given field is deprecated.
public NestInformation[]
info() default {}
Specifies the documentation informations for the field.
public NestTypeUsage
type() default @NestTypeUsage(kind = "OBJECT_LITERAL", value = Object.class)
Specifies the type of the field.
public String
Specifies the name of the field
public abstract boolean deprecated() default false
Specifies if the given field is deprecated.
true if the field is deprecated.
public abstract NestInformation[] info() default {}
Specifies the documentation informations for the field.
The array of informations.
public abstract NestTypeUsage type() default @NestTypeUsage(kind = "OBJECT_LITERAL", value = Object.class)
Specifies the type of the field.
The type declaration.
public abstract String value()
Specifies the name of the field
The name.