com.vaadin.ui.TextField.setDescription() - java examples

Here are the examples of the java api com.vaadin.ui.TextField.setDescription() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

14 Examples 7

17 View Complete Implementation : ComboBoxWithSearchField.java
Copyright GNU General Public License v3.0
Author : rlsutton1
private void setValueLabel(T value) {
    valueLabel.setReadOnly(false);
    if (value == null) {
        valueLabel.setStyleName(ValoTheme.LABEL_FAILURE);
        valueLabel.setValue(nullLabel);
        valueLabel.setDescription(null);
    } else {
        valueLabel.setStyleName(ValoTheme.LABEL_SUCCESS);
        valueLabel.setValue(value.toString());
    }
    valueLabel.setReadOnly(true);
}

16 View Complete Implementation : HyperCSVPIPConfigurationComponent.java
Copyright Apache License 2.0
Author : apache
@AutoGenerated
private VerticalLayout buildMainLayout() {
    // common part: create layout
    mainLayout = new VerticalLayout();
    mainLayout.setImmediate(false);
    mainLayout.setWidth("-1px");
    mainLayout.setHeight("-1px");
    mainLayout.setMargin(false);
    // top-level component properties
    setWidth("-1px");
    setHeight("-1px");
    // textFieldSource
    textFieldSource = new TextField();
    textFieldSource.setCaption("CSV Source File");
    textFieldSource.setImmediate(false);
    textFieldSource.setDescription("Path to CSV file");
    textFieldSource.setWidth("-1px");
    textFieldSource.setHeight("-1px");
    textFieldSource.setInvalidAllowed(false);
    textFieldSource.setRequired(true);
    textFieldSource.setInputPrompt("Eg. /opt/app/data.csv");
    mainLayout.addComponent(textFieldSource);
    // textFieldTarget
    textFieldTarget = new TextField();
    textFieldTarget.setCaption("Table");
    textFieldTarget.setImmediate(false);
    textFieldTarget.setDescription("Name of database table to be created.");
    textFieldTarget.setWidth("-1px");
    textFieldTarget.setHeight("-1px");
    textFieldTarget.setInvalidAllowed(false);
    textFieldTarget.setRequired(true);
    mainLayout.addComponent(textFieldTarget);
    // textFieldDefinition
    textFieldDefinition = new TextField();
    textFieldDefinition.setCaption("Table Definition");
    textFieldDefinition.setImmediate(false);
    textFieldDefinition.setDescription("SQL Table Definition");
    textFieldDefinition.setWidth("-1px");
    textFieldDefinition.setHeight("-1px");
    textFieldDefinition.setInvalidAllowed(false);
    textFieldDefinition.setRequired(true);
    mainLayout.addComponent(textFieldDefinition);
    return mainLayout;
}

16 View Complete Implementation : RangeEditorComponent.java
Copyright Apache License 2.0
Author : apache
@AutoGenerated
private HorizontalLayout buildHorizontalLayout_2() {
    // common part: create layout
    horizontalLayout_2 = new HorizontalLayout();
    horizontalLayout_2.setImmediate(false);
    horizontalLayout_2.setWidth("-1px");
    horizontalLayout_2.setHeight("-1px");
    horizontalLayout_2.setMargin(false);
    horizontalLayout_2.setSpacing(true);
    // comboBoxMax
    comboBoxMax = new ComboBox();
    comboBoxMax.setCaption("Maximum Type");
    comboBoxMax.setImmediate(true);
    comboBoxMax.setDescription("Select the type for the maximum.");
    comboBoxMax.setWidth("-1px");
    comboBoxMax.setHeight("-1px");
    horizontalLayout_2.addComponent(comboBoxMax);
    // textFieldMax
    textFieldMax = new TextField();
    textFieldMax.setCaption("Maximum Value");
    textFieldMax.setImmediate(true);
    textFieldMax.setDescription("Enter a value for the maxmum.");
    textFieldMax.setWidth("-1px");
    textFieldMax.setHeight("-1px");
    textFieldMax.setInvalidAllowed(false);
    textFieldMax.setInputPrompt("eg. 100");
    horizontalLayout_2.addComponent(textFieldMax);
    return horizontalLayout_2;
}

16 View Complete Implementation : RangeEditorComponent.java
Copyright Apache License 2.0
Author : apache
@AutoGenerated
private HorizontalLayout buildHorizontalLayout_1() {
    // common part: create layout
    horizontalLayout_1 = new HorizontalLayout();
    horizontalLayout_1.setImmediate(false);
    horizontalLayout_1.setWidth("-1px");
    horizontalLayout_1.setHeight("-1px");
    horizontalLayout_1.setMargin(false);
    horizontalLayout_1.setSpacing(true);
    // comboBoxMin
    comboBoxMin = new ComboBox();
    comboBoxMin.setCaption("Minimum Type");
    comboBoxMin.setImmediate(true);
    comboBoxMin.setDescription("Select the type for the minimum.");
    comboBoxMin.setWidth("-1px");
    comboBoxMin.setHeight("-1px");
    horizontalLayout_1.addComponent(comboBoxMin);
    // textFieldMin
    textFieldMin = new TextField();
    textFieldMin.setCaption("Minimum Value");
    textFieldMin.setImmediate(true);
    textFieldMin.setDescription("Enter a value for the minimum.");
    textFieldMin.setWidth("-1px");
    textFieldMin.setHeight("-1px");
    textFieldMin.setInvalidAllowed(false);
    textFieldMin.setInputPrompt("eg. 1");
    horizontalLayout_1.addComponent(textFieldMin);
    horizontalLayout_1.setComponentAlignment(textFieldMin, new Alignment(9));
    return horizontalLayout_1;
}

16 View Complete Implementation : RegexpEditorComponent.java
Copyright Apache License 2.0
Author : apache
@AutoGenerated
private VerticalLayout buildMainLayout() {
    // common part: create layout
    mainLayout = new VerticalLayout();
    mainLayout.setImmediate(false);
    mainLayout.setWidth("-1px");
    mainLayout.setHeight("-1px");
    mainLayout.setMargin(true);
    mainLayout.setSpacing(true);
    // top-level component properties
    setWidth("-1px");
    setHeight("-1px");
    // textFieldExpression
    textFieldExpression = new TextField();
    textFieldExpression.setCaption("Regular Expression");
    textFieldExpression.setImmediate(true);
    textFieldExpression.setDescription("Create a regular expression used to constrain attribute values.");
    textFieldExpression.setWidth("-1px");
    textFieldExpression.setHeight("-1px");
    textFieldExpression.setInvalidAllowed(false);
    textFieldExpression.setInputPrompt("eg. [a-zA-Z0-9]");
    mainLayout.addComponent(textFieldExpression);
    mainLayout.setExpandRatio(textFieldExpression, 1.0f);
    // panelTester
    panelTester = buildPanelTester();
    mainLayout.addComponent(panelTester);
    mainLayout.setExpandRatio(panelTester, 1.0f);
    return mainLayout;
}

15 View Complete Implementation : AttributeSimpleCreatorComponent.java
Copyright Apache License 2.0
Author : apache
@AutoGenerated
private VerticalLayout buildMainLayout() {
    // common part: create layout
    mainLayout = new VerticalLayout();
    mainLayout.setImmediate(false);
    mainLayout.setWidth("-1px");
    mainLayout.setHeight("-1px");
    mainLayout.setMargin(true);
    mainLayout.setSpacing(true);
    // top-level component properties
    setWidth("-1px");
    setHeight("-1px");
    // textFieldAttributeId
    textFieldAttributeId = new TextField();
    textFieldAttributeId.setCaption("Attribute Id");
    textFieldAttributeId.setImmediate(false);
    textFieldAttributeId.setWidth("100.0%");
    textFieldAttributeId.setHeight("-1px");
    textFieldAttributeId.setInvalidAllowed(false);
    textFieldAttributeId.setRequired(true);
    mainLayout.addComponent(textFieldAttributeId);
    mainLayout.setExpandRatio(textFieldAttributeId, 1.0f);
    // textFieldContextPath
    textFieldContextPath = new TextField();
    textFieldContextPath.setCaption("Context Path");
    textFieldContextPath.setImmediate(false);
    textFieldContextPath.setDescription("The Selector's Context Path.");
    textFieldContextPath.setWidth("100.0%");
    textFieldContextPath.setHeight("-1px");
    textFieldContextPath.setInputPrompt("eg. md:record/md:patient/md:patient-number/text()");
    mainLayout.addComponent(textFieldContextPath);
    mainLayout.setExpandRatio(textFieldContextPath, 1.0f);
    // horizontalLayout_1
    horizontalLayout_1 = buildHorizontalLayout_1();
    mainLayout.addComponent(horizontalLayout_1);
    mainLayout.setExpandRatio(horizontalLayout_1, 1.0f);
    return mainLayout;
}

15 View Complete Implementation : CSVPIPConfigurationComponent.java
Copyright Apache License 2.0
Author : apache
@AutoGenerated
private VerticalLayout buildMainLayout() {
    // common part: create layout
    mainLayout = new VerticalLayout();
    mainLayout.setImmediate(false);
    mainLayout.setWidth("-1px");
    mainLayout.setHeight("-1px");
    mainLayout.setMargin(true);
    mainLayout.setSpacing(true);
    // top-level component properties
    setWidth("-1px");
    setHeight("-1px");
    // textFieldFile
    textFieldFile = new TextField();
    textFieldFile.setCaption("Path to CSV File");
    textFieldFile.setImmediate(false);
    textFieldFile.setDescription("This is the path to CSV file on the PDP node.");
    textFieldFile.setWidth("-1px");
    textFieldFile.setHeight("-1px");
    textFieldFile.setInvalidAllowed(false);
    textFieldFile.setRequired(true);
    textFieldFile.setInputPrompt("Eg. \"c:\\data.csv\" \"http://foo.com/data.csv\"");
    mainLayout.addComponent(textFieldFile);
    mainLayout.setExpandRatio(textFieldFile, 1.0f);
    // textFieldDelimiter
    textFieldDelimiter = new TextField();
    textFieldDelimiter.setCaption("Delimiter");
    textFieldDelimiter.setImmediate(false);
    textFieldDelimiter.setDescription("Enter a separator character or string that delineates columns in each row.");
    textFieldDelimiter.setWidth("-1px");
    textFieldDelimiter.setHeight("-1px");
    textFieldDelimiter.setInputPrompt("Eg. \",\" or \"|\"");
    textFieldDelimiter.setNullSettingAllowed(true);
    mainLayout.addComponent(textFieldDelimiter);
    mainLayout.setExpandRatio(textFieldDelimiter, 1.0f);
    // textFieldQuote
    textFieldQuote = new TextField();
    textFieldQuote.setCaption("Quote");
    textFieldQuote.setImmediate(false);
    textFieldQuote.setDescription("Enter character used for quoted elements.");
    textFieldQuote.setWidth("-1px");
    textFieldQuote.setHeight("-1px");
    textFieldQuote.setInputPrompt("Eg. \" or '");
    textFieldQuote.setNullSettingAllowed(true);
    mainLayout.addComponent(textFieldQuote);
    // textFieldSkip
    textFieldSkip = new TextField();
    textFieldSkip.setCaption("Skip Lines");
    textFieldSkip.setImmediate(false);
    textFieldSkip.setDescription("Skips the number of lines at the beginning of the file.");
    textFieldSkip.setWidth("-1px");
    textFieldSkip.setHeight("-1px");
    textFieldSkip.setInputPrompt("Eg. 1 or 2");
    mainLayout.addComponent(textFieldSkip);
    return mainLayout;
}

15 View Complete Implementation : RangeEditorComponent.java
Copyright Apache License 2.0
Author : apache
@AutoGenerated
private VerticalLayout buildVerticalLayout_2() {
    // common part: create layout
    verticalLayout_2 = new VerticalLayout();
    verticalLayout_2.setImmediate(false);
    verticalLayout_2.setWidth("100.0%");
    verticalLayout_2.setHeight("100.0%");
    verticalLayout_2.setMargin(false);
    verticalLayout_2.setSpacing(true);
    // textFieldTestInput
    textFieldTestInput = new TextField();
    textFieldTestInput.setCaption("Value");
    textFieldTestInput.setImmediate(true);
    textFieldTestInput.setDescription("Enter a value to test against.");
    textFieldTestInput.setWidth("-1px");
    textFieldTestInput.setHeight("-1px");
    textFieldTestInput.setInputPrompt("eg. 50");
    verticalLayout_2.addComponent(textFieldTestInput);
    // buttonValidate
    buttonValidate = new Button();
    buttonValidate.setCaption("Test");
    buttonValidate.setImmediate(true);
    buttonValidate.setDescription("Click to test if value is within the range.");
    buttonValidate.setWidth("-1px");
    buttonValidate.setHeight("-1px");
    verticalLayout_2.addComponent(buttonValidate);
    verticalLayout_2.setComponentAlignment(buttonValidate, new Alignment(48));
    return verticalLayout_2;
}

15 View Complete Implementation : RegexpEditorComponent.java
Copyright Apache License 2.0
Author : apache
@AutoGenerated
private VerticalLayout buildVerticalLayout_2() {
    // common part: create layout
    verticalLayout_2 = new VerticalLayout();
    verticalLayout_2.setImmediate(false);
    verticalLayout_2.setWidth("100.0%");
    verticalLayout_2.setHeight("100.0%");
    verticalLayout_2.setMargin(false);
    // textFieldTestValue
    textFieldTestValue = new TextField();
    textFieldTestValue.setCaption("Test Value");
    textFieldTestValue.setImmediate(true);
    textFieldTestValue.setDescription("Enter a value to match against the regular expression.");
    textFieldTestValue.setWidth("-1px");
    textFieldTestValue.setHeight("-1px");
    textFieldTestValue.setInputPrompt("eg. example");
    verticalLayout_2.addComponent(textFieldTestValue);
    // buttonTest
    buttonTest = new Button();
    buttonTest.setCaption("Test");
    buttonTest.setImmediate(true);
    buttonTest.setWidth("-1px");
    buttonTest.setHeight("-1px");
    verticalLayout_2.addComponent(buttonTest);
    verticalLayout_2.setComponentAlignment(buttonTest, new Alignment(48));
    return verticalLayout_2;
}

13 View Complete Implementation : CustomPIPConfigurationComponent.java
Copyright Apache License 2.0
Author : apache
@AutoGenerated
private VerticalLayout buildMainLayout() {
    // common part: create layout
    mainLayout = new VerticalLayout();
    mainLayout.setImmediate(false);
    mainLayout.setWidth("-1px");
    mainLayout.setHeight("-1px");
    mainLayout.setMargin(false);
    mainLayout.setSpacing(true);
    // top-level component properties
    setWidth("-1px");
    setHeight("-1px");
    // textFieldClreplacedname
    textFieldClreplacedname = new TextField();
    textFieldClreplacedname.setCaption("Java Clreplacedname");
    textFieldClreplacedname.setImmediate(false);
    textFieldClreplacedname.setDescription("Java clreplacedname of the code implementing the custom PIP.");
    textFieldClreplacedname.setWidth("-1px");
    textFieldClreplacedname.setHeight("-1px");
    textFieldClreplacedname.setInputPrompt("Eg. com.foo.MyPIP");
    mainLayout.addComponent(textFieldClreplacedname);
    mainLayout.setExpandRatio(textFieldClreplacedname, 1.0f);
    // pipParameterComponent
    pipParameterComponent = new PIPParameterComponent(this.enreplacedy.getEnreplacedy());
    pipParameterComponent.setImmediate(false);
    pipParameterComponent.setWidth("-1px");
    pipParameterComponent.setHeight("-1px");
    mainLayout.addComponent(pipParameterComponent);
    return mainLayout;
}

12 View Complete Implementation : EditPDPWindow.java
Copyright Apache License 2.0
Author : apache
@AutoGenerated
private VerticalLayout buildMainLayout() {
    // common part: create layout
    mainLayout = new VerticalLayout();
    mainLayout.setImmediate(false);
    mainLayout.setWidth("-1px");
    mainLayout.setHeight("-1px");
    mainLayout.setMargin(true);
    mainLayout.setSpacing(true);
    // top-level component properties
    setWidth("-1px");
    setHeight("-1px");
    // textId
    textId = new TextField();
    textId.setCaption("PDP URL");
    textId.setImmediate(false);
    textId.setDescription("The URL is the ID of the PDP");
    textId.setWidth("-1px");
    textId.setHeight("-1px");
    textId.setRequired(true);
    textId.setInputPrompt("Eg. http://localhost:8080/pdp");
    mainLayout.addComponent(textId);
    // textName
    textName = new TextField();
    textName.setCaption("PDP Name");
    textName.setImmediate(false);
    textName.setWidth("-1px");
    textName.setHeight("-1px");
    mainLayout.addComponent(textName);
    // textDescription
    textDescription = new TextArea();
    textDescription.setCaption("PDP Description");
    textDescription.setImmediate(false);
    textDescription.setWidth("100.0%");
    textDescription.setHeight("-1px");
    textDescription.setNullSettingAllowed(true);
    mainLayout.addComponent(textDescription);
    mainLayout.setExpandRatio(textDescription, 1.0f);
    // buttonSave
    buttonSave = new Button();
    buttonSave.setCaption("Save");
    buttonSave.setImmediate(true);
    buttonSave.setWidth("-1px");
    buttonSave.setHeight("-1px");
    mainLayout.addComponent(buttonSave);
    mainLayout.setComponentAlignment(buttonSave, new Alignment(48));
    return mainLayout;
}

10 View Complete Implementation : ColumnSelectionWindow.java
Copyright Apache License 2.0
Author : apache
@AutoGenerated
private VerticalLayout buildMainLayout() {
    // common part: create layout
    mainLayout = new VerticalLayout();
    mainLayout.setImmediate(false);
    mainLayout.setWidth("-1px");
    mainLayout.setHeight("-1px");
    mainLayout.setMargin(true);
    mainLayout.setSpacing(true);
    // top-level component properties
    setWidth("-1px");
    setHeight("-1px");
    // textFieldColumn
    textFieldColumn = new TextField();
    textFieldColumn.setCaption("Column");
    textFieldColumn.setImmediate(false);
    textFieldColumn.setDescription("0-based index into CSV line");
    textFieldColumn.setWidth("-1px");
    textFieldColumn.setHeight("-1px");
    textFieldColumn.setRequired(true);
    textFieldColumn.setInputPrompt("Eg. ‘0'");
    mainLayout.addComponent(textFieldColumn);
    // buttonSave
    buttonSave = new Button();
    buttonSave.setCaption("Save");
    buttonSave.setImmediate(false);
    buttonSave.setWidth("-1px");
    buttonSave.setHeight("-1px");
    mainLayout.addComponent(buttonSave);
    mainLayout.setComponentAlignment(buttonSave, new Alignment(48));
    return mainLayout;
}

9 View Complete Implementation : PolicyEditorWindow.java
Copyright Apache License 2.0
Author : apache
@AutoGenerated
private VerticalLayout buildMainLayout() {
    // common part: create layout
    mainLayout = new VerticalLayout();
    mainLayout.setImmediate(false);
    mainLayout.setWidth("-1px");
    mainLayout.setHeight("-1px");
    mainLayout.setMargin(true);
    mainLayout.setSpacing(true);
    // top-level component properties
    setWidth("-1px");
    setHeight("-1px");
    // labelID
    labelID = new Label();
    labelID.setCaption("Policy Set ID");
    labelID.setImmediate(false);
    labelID.setWidth("100.0%");
    labelID.setHeight("-1px");
    labelID.setValue("Label");
    mainLayout.addComponent(labelID);
    // textFieldVersion
    textFieldVersion = new TextField();
    textFieldVersion.setCaption("Version");
    textFieldVersion.setImmediate(false);
    textFieldVersion.setDescription("The format is numbers only separated by decimal point.");
    textFieldVersion.setWidth("-1px");
    textFieldVersion.setHeight("-1px");
    textFieldVersion.setInvalidAllowed(false);
    textFieldVersion.setRequired(true);
    textFieldVersion.setInputPrompt("Eg. 1 or 1.0 or 1.0.0 etc.");
    mainLayout.addComponent(textFieldVersion);
    // listSelectAlgorithm
    listSelectAlgorithm = new ListSelect();
    listSelectAlgorithm.setCaption("Policy Combining Algorithm");
    listSelectAlgorithm.setImmediate(false);
    listSelectAlgorithm.setWidth("100.0%");
    listSelectAlgorithm.setHeight("-1px");
    listSelectAlgorithm.setInvalidAllowed(false);
    listSelectAlgorithm.setRequired(true);
    mainLayout.addComponent(listSelectAlgorithm);
    // textAreaDescription
    textAreaDescription = new TextArea();
    textAreaDescription.setCaption("Description");
    textAreaDescription.setImmediate(false);
    textAreaDescription.setWidth("100.0%");
    textAreaDescription.setHeight("-1px");
    mainLayout.addComponent(textAreaDescription);
    mainLayout.setExpandRatio(textAreaDescription, 1.0f);
    // buttonSave
    buttonSave = new Button();
    buttonSave.setCaption("Save");
    buttonSave.setImmediate(true);
    buttonSave.setWidth("-1px");
    buttonSave.setHeight("-1px");
    mainLayout.addComponent(buttonSave);
    mainLayout.setComponentAlignment(buttonSave, new Alignment(48));
    return mainLayout;
}

7 View Complete Implementation : SubDomainEditorWindow.java
Copyright Apache License 2.0
Author : apache
@AutoGenerated
private FormLayout buildMainLayout() {
    // common part: create layout
    mainLayout = new FormLayout();
    mainLayout.setImmediate(false);
    mainLayout.setWidth("-1px");
    mainLayout.setHeight("-1px");
    mainLayout.setMargin(true);
    mainLayout.setSpacing(true);
    // top-level component properties
    setWidth("-1px");
    setHeight("-1px");
    // textFieldSubdomain
    textFieldSubdomain = new TextField();
    textFieldSubdomain.setCaption("Enter Sub Domain");
    textFieldSubdomain.setImmediate(false);
    textFieldSubdomain.setDescription("You can enter sub domain name - do not use spaces or wildcard characters.");
    textFieldSubdomain.setWidth("-1px");
    textFieldSubdomain.setHeight("-1px");
    textFieldSubdomain.setInvalidAllowed(false);
    textFieldSubdomain.setInputPrompt("Examples: sales hr business marketing.");
    mainLayout.addComponent(textFieldSubdomain);
    mainLayout.setExpandRatio(textFieldSubdomain, 1.0f);
    // buttonSave
    buttonSave = new Button();
    buttonSave.setCaption("Save");
    buttonSave.setImmediate(true);
    buttonSave.setWidth("-1px");
    buttonSave.setHeight("-1px");
    mainLayout.addComponent(buttonSave);
    mainLayout.setComponentAlignment(buttonSave, new Alignment(48));
    return mainLayout;
}