Examples of helpText()


Examples of javango.forms.fields.annotations.FieldProperties.helpText()

    FieldProperties props = (FieldProperties)annotation;
    this.setRequired(props.required());
    this.setEditable(props.editable());
    this.setAllowNull(props.allowNull());
    this.label = "".equals(props.label()) ? props.verboseName() : props.label();
    this.helpText = props.helpText();
    this.hidden = props.hidden();
    this.setWidgetAttrs(props.widgetAttrs());
    if (props.widgetClass() != FieldProperties.NoWidget.class) this.widgetClass = props.widgetClass();
  }
   
View Full Code Here

Examples of org.terasology.logic.console.Command.helpText()

                parameterTypes.add(paramType);
            }
        }
        this.runOnServer = commandAnnotation.runOnServer();
        this.shortDescription = commandAnnotation.shortDescription();
        this.helpText = commandAnnotation.helpText();
    }
   
    private String getParamName(int i) {
        // JAVA8: if relevant classes are compiled with the "-parameters" flag,
        // the parameter name can be accessed through reflection like this:
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.