|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |
@Documented @Retention(value=RUNTIME) @Target(value=PARAMETER) public @interface EditableInt
Marks an int
that will be editable by the level editor.
Required Element Summary | |
---|---|
int |
defaultValue
The default value to be used for this parameter. |
java.lang.String |
editorName
The name that the level editor will use for this parameter. |
Optional Element Summary | |
---|---|
int[] |
allowedValues
A set of allowed values for this parameter. |
int |
maxValue
The maximum value that the editor may allow for this parameter. |
int |
minValue
The minimum value that the editor may allow for this parameter. |
Element Detail |
---|
public abstract int defaultValue
public abstract java.lang.String editorName
public abstract int minValue
Integer.MIN_VALUE
if unspecified.
public abstract int maxValue
Integer.MAX_VALUE
if unspecified.
public abstract int[] allowedValues
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |