package org.trianacode.annotation;
/**
* GENERAL NOTE: parameters that are displayed in auto generated GUIs should only be primitive or string types.
* <p/>
* automatically defines a field as a parameter and defines the gui for it
* <p/>
* This will produce a text field suitable for short strings with no new lines
*
* @author Andrew Harrison
* @version 1.0.0 Aug 2, 2010
*/
@java.lang.annotation.Target({java.lang.annotation.ElementType.FIELD})
@java.lang.annotation.Retention(java.lang.annotation.RetentionPolicy.RUNTIME)
public @interface TextFieldParameter {
String title() default "";
String value() default "";
}