本文整理匯總了Java中com.vaadin.ui.CheckBox.setDescription方法的典型用法代碼示例。如果您正苦於以下問題:Java CheckBox.setDescription方法的具體用法?Java CheckBox.setDescription怎麽用?Java CheckBox.setDescription使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.vaadin.ui.CheckBox
的用法示例。
在下文中一共展示了CheckBox.setDescription方法的13個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: buildDialogLayout
import com.vaadin.ui.CheckBox; //導入方法依賴的package包/類
@Override
protected void buildDialogLayout() {
final VerticalLayout layout = new VerticalLayout();
layout.setWidth("100%");
layout.setHeight("-1px");
layout.setSpacing(true);
layout.setMargin(true);
txtPattern = new TextField(ctx.tr("renamer.dialog.regExp"));
txtPattern.setWidth("100%");
layout.addComponent(txtPattern);
txtValue = new TextField(ctx.tr("renamer.dialog.replaceWith"));
txtValue.setWidth("100%");
layout.addComponent(txtValue);
checkUseAdvanced = new CheckBox(ctx.tr("renamer.dialog.advancedMode"));
checkUseAdvanced.setWidth("100%");
checkUseAdvanced.setDescription(ctx.tr("renamer.dialog.advancedMode.desc"));
layout.addComponent(checkUseAdvanced);
setCompositionRoot(layout);
}
示例2: buildDialogLayout
import com.vaadin.ui.CheckBox; //導入方法依賴的package包/類
@Override
protected void buildDialogLayout() {
setSizeFull();
final VerticalLayout mainLayout = new VerticalLayout();
mainLayout.setImmediate(false);
mainLayout.setWidth("100%");
mainLayout.setHeight("-1px");
mainLayout.setSpacing(true);
mainLayout.setMargin(true);
txtObject = new TextField(ctx.tr("filesFilter.dialog.value"));
txtObject.setWidth("100%");
txtObject.setRequired(true);
mainLayout.addComponent(txtObject);
checkUseRegExp = new CheckBox(ctx.tr("filesFilter.dialog.regexp"));
checkUseRegExp.setDescription(ctx.tr("filesFilter.dialog.regexp.desc"));
mainLayout.addComponent(checkUseRegExp);
setCompositionRoot(mainLayout);
}
示例3: getPopupComponent
import com.vaadin.ui.CheckBox; //導入方法依賴的package包/類
@Override
public Component getPopupComponent() {
final VerticalLayout layout = new VerticalLayout();
layout.setSizeUndefined();
layout.setMargin(true);
final boolean isLegalEntity = getValue() != null && getValue() instanceof LegalEntity;
final CheckBox isLegalEntityField = new CheckBox("Клиент Юр.лицо", isLegalEntity);
isLegalEntityField.setDescription("Отметте флаг, если клиент является юр.лицом");
isLegalEntityField.addValueChangeListener(event -> {
final Boolean isLE = isLegalEntityField.getValue();
if (getValue() != null)
if (!isLE && getValue() instanceof LegalEntity
|| isLE && getValue() instanceof Person)
setValue(null);
makePopup(layout, isLE);
});
layout.addComponent(isLegalEntityField);
makePopup(layout, isLegalEntity);
return layout;
}
示例4: buildDialogLayout
import com.vaadin.ui.CheckBox; //導入方法依賴的package包/類
@Override
public void buildDialogLayout() {
VerticalLayout mainLayout = new VerticalLayout();
mainLayout.setImmediate(false);
mainLayout.setMargin(true);
mainLayout.setWidth("100%");
mainLayout.setHeight("-1px");
checkDuplicityAvoid = new CheckBox(ctx.tr("unzipper.dialog.unzip.duplicity.avoid"));
checkDuplicityAvoid.setDescription(ctx.tr("unzipper.dialog.unzip.duplicity.avoid.description"));
mainLayout.addComponent(checkDuplicityAvoid);
setCompositionRoot(mainLayout);
}
示例5: buildLayout
import com.vaadin.ui.CheckBox; //導入方法依賴的package包/類
@Override
public void buildLayout() {
final VerticalLayout mainLayout = new VerticalLayout();
mainLayout.setSizeFull();
mainLayout.setSpacing(true);
mainLayout.setMargin(true);
txtMaxAttemps = new TextField(
"Max number of attemps to download a single file, use -1 for infinity");
txtMaxAttemps.setDescription("Set to 0 to use only files from cache");
txtMaxAttemps.setWidth("5em");
txtMaxAttemps.setRequired(true);
mainLayout.addComponent(txtMaxAttemps);
txtMaxPause = new TextField("Max pause in ms between downloads");
txtMaxPause.setWidth("10em");
txtMaxPause.setRequired(true);
mainLayout.addComponent(txtMaxPause);
txtMinPause = new TextField("Min pause in ms between downloads");
txtMinPause.setWidth("10em");
txtMinPause.setRequired(true);
mainLayout.addComponent(txtMinPause);
checkRewriteCache = new CheckBox("Rewrite cache");
checkRewriteCache.setDescription(
"If checked then files are always downloaded and existing files in caches are rewritten.");
mainLayout.addComponent(checkRewriteCache);
checkComplexCache = new CheckBox("Use complex cache");
checkComplexCache.setDescription("If checked the only one instance of this DPU should be running"
+ "at a time. Complex cache can handle larger URIs.");
mainLayout.addComponent(checkComplexCache);
setCompositionRoot(mainLayout);
}
示例6: createEditFields
import com.vaadin.ui.CheckBox; //導入方法依賴的package包/類
/** {@inheritDoc} */
@Override
protected ComponentContainer createEditFields() {
final FormLayout form = new ExtaFormLayout();
form.setSizeFull();
nameField = new EditField("Название продукта", "Введите название продукта");
nameField.setColumns(30);
nameField.setRequired(true);
form.addComponent(nameField);
vendorField = new CompanyField("Поставщик");
form.addComponent(vendorField);
maxPeroidField = new EditField("Max период рассрочки", "Введите максимальный период рассрочки по продукту");
maxPeroidField.setRequired(true);
form.addComponent(maxPeroidField);
minDownpaymentField = new EditField("Первоначальный взнос", "Введите минимальный первоначальный взнос");
minDownpaymentField.setRequired(true);
minDownpaymentField.setConverter(lookup(StringToPercentConverter.class));
form.addComponent(minDownpaymentField);
activeField = new CheckBox("Активный продукт");
activeField.setDescription("Участвует ли продукт в продажах (учавствует если активен)");
form.addComponent(activeField);
commentField = new TextArea("Примечание");
commentField.setDescription("Дополнительная информация о продукте");
commentField.setNullRepresentation("");
commentField.setInputPrompt("Дополнительная информация о продукте");
commentField.setRows(5);
form.addComponent(commentField);
return form;
}
示例7: createEditFields
import com.vaadin.ui.CheckBox; //導入方法依賴的package包/類
/** {@inheritDoc} */
@Override
protected ComponentContainer createEditFields() {
final FormLayout form = new ExtaFormLayout();
form.setSizeFull();
nameField = new EditField("Название продукта", "Введите название продукта");
nameField.setColumns(30);
nameField.setRequired(true);
form.addComponent(nameField);
vendorField = new CompanyField("Страховщик");
form.addComponent(vendorField);
percentField = new EditField("Процент страх.премии", "Введите процент страховой премии по продукту");
percentField.setRequired(true);
percentField.setConverter(lookup(StringToPercentConverter.class));
form.addComponent(percentField);
activeField = new CheckBox("Активный продукт");
activeField.setDescription("Участвует ли продукт в продажах (учавствует если активен)");
form.addComponent(activeField);
commentField = new TextArea("Примечание");
commentField.setDescription("Дополнительная информация о продукте");
commentField.setNullRepresentation("");
commentField.setInputPrompt("Дополнительная информация о продукте");
commentField.setRows(5);
form.addComponent(commentField);
return form;
}
示例8: createEditFields
import com.vaadin.ui.CheckBox; //導入方法依賴的package包/類
/** {@inheritDoc} */
@Override
protected ComponentContainer createEditFields() {
final FormLayout form = new ExtaFormLayout();
form.setSizeFull();
nameField = new EditField("Название");
nameField.setImmediate(true);
nameField.setDescription("Введите название группы пользователей");
nameField.setRequired(true);
nameField.setRequiredError("Название группы пользователем не может быть пустым. Необходимо ввести название.");
nameField.setColumns(30);
form.addComponent(nameField);
descriptionField = new TextArea("Описание");
descriptionField.setImmediate(true);
descriptionField.setDescription("Введите описание группы пользователей.");
descriptionField.setInputPrompt("Описание группы пользователей");
descriptionField.setNullRepresentation("");
descriptionField.setRows(2);
form.addComponent(descriptionField);
showPrivateCommentsField = new CheckBox("Доступ к закрытым коментариям");
showPrivateCommentsField.setDescription("Установите, чтобы разрешить доступ к закрытым коментариям.");
form.addComponent(showPrivateCommentsField);
brandsField = new MotorBrandMultiselect("Доступные бренды");
form.addComponent(brandsField);
regionsField = new RegionMultiselect("Доступные регионы");
form.addComponent(regionsField);
permissionsField = new ExtaPermissionField(getEntity());
permissionsField.setCaption("Правила доступа группы");
form.addComponent(permissionsField);
return form;
}
示例9: initElements
import com.vaadin.ui.CheckBox; //導入方法依賴的package包/類
protected void initElements() {
type2 = new ComboBox();
type2.setImmediate(true);
type2.setWidth(WIDTH);
lbMeta = new Label("Meta:");
cbMeta = new CheckBox();
cbMeta.setDescription("Is this element Meta data");
optional.setWidth(WIDTH);
type = new ComboBox();
type.setWidth(WIDTH);
type.setNullSelectionAllowed(false);
type.setImmediate(true);
type.addItem(SINGLE_FILE);
type.addItem(MULTI_FILE);
type.select(SINGLE_FILE);
type.addValueChangeListener(new ValueChangeListener() {
private static final long serialVersionUID = -1134955257251483403L;
@Override
public void valueChange(ValueChangeEvent event) {
if(type.getValue().toString().contentEquals(SINGLE_FILE)) {
getSingleFileUI();
} else if(type.getValue().toString().contentEquals(MULTI_FILE)){
getMultipleFilesUI();
}
}
});
}
示例10: initElements
import com.vaadin.ui.CheckBox; //導入方法依賴的package包/類
private void initElements() {
lbName = new Label("Display name:");
lbId = new Label();
lbDescription = new Label("Description:");
lbOptional = new Label("Optional:");
name = new TextField();
name.setWidth(WIDTH);
name.setDescription("Display name for the element");
name.setImmediate(true);
name.addTextChangeListener(new CSCTextChangeListener(this));
id = new TextField();
id.setDescription("file name or unique identification");
id.setImmediate(true);
id.setRequired(true);
id.setRequiredError(REQUIRED_TEXT);
id.setWidth(WIDTH);
id.addTextChangeListener(new CSCTextChangeListener(this, true));
description = new TextArea();
description.setWidth(WIDTH);
description.setDescription("Short description");
layout = new HorizontalLayout();
prefix = new TextField();
postfix = new TextField();
layout.addComponent(prefix);
layout.addComponent(new Label(MULTI_FILE_TEXT));
layout.addComponent(postfix);
optional = new CheckBox();
optional.setDescription("Is this element optional");
optional.setImmediate(true);
}
示例11: buildHorizontalLayout_1
import com.vaadin.ui.CheckBox; //導入方法依賴的package包/類
@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);
// buttonAddExpression
buttonAddExpression = new Button();
buttonAddExpression.setCaption("Add Expression");
buttonAddExpression.setImmediate(true);
buttonAddExpression.setWidth("-1px");
buttonAddExpression.setHeight("-1px");
horizontalLayout_1.addComponent(buttonAddExpression);
// buttonDeleteExpression
buttonDeleteExpression = new Button();
buttonDeleteExpression.setCaption("Delete Expression");
buttonDeleteExpression.setImmediate(true);
buttonDeleteExpression.setWidth("-1px");
buttonDeleteExpression.setHeight("-1px");
horizontalLayout_1.addComponent(buttonDeleteExpression);
// buttonClearAll
buttonClearAll = new Button();
buttonClearAll.setCaption("Clear All");
buttonClearAll.setImmediate(true);
buttonClearAll.setDescription("Clears all the expressions.");
buttonClearAll.setWidth("-1px");
buttonClearAll.setHeight("-1px");
horizontalLayout_1.addComponent(buttonClearAll);
// checkBoxShortName
checkBoxShortName = new CheckBox();
checkBoxShortName.setCaption("Display Short XACML ID's");
checkBoxShortName.setImmediate(false);
checkBoxShortName
.setDescription("If checked, the right-most string of the function and datatype URI's will only be displayed.");
checkBoxShortName.setWidth("-1px");
checkBoxShortName.setHeight("-1px");
horizontalLayout_1.addComponent(checkBoxShortName);
return horizontalLayout_1;
}
示例12: buildHorizontalLayoutToolbar
import com.vaadin.ui.CheckBox; //導入方法依賴的package包/類
@AutoGenerated
private HorizontalLayout buildHorizontalLayoutToolbar() {
// common part: create layout
horizontalLayoutToolbar = new HorizontalLayout();
horizontalLayoutToolbar.setImmediate(false);
horizontalLayoutToolbar.setWidth("-1px");
horizontalLayoutToolbar.setHeight("-1px");
horizontalLayoutToolbar.setMargin(true);
horizontalLayoutToolbar.setSpacing(true);
// checkBoxReadOnly
checkBoxReadOnly = new CheckBox();
checkBoxReadOnly.setCaption("Read Only");
checkBoxReadOnly.setImmediate(false);
checkBoxReadOnly
.setDescription("Check this to turn-off policy editing.");
checkBoxReadOnly.setWidth("-1px");
checkBoxReadOnly.setHeight("-1px");
horizontalLayoutToolbar.addComponent(checkBoxReadOnly);
// checkBoxAutoSave
checkBoxAutoSave = new CheckBox();
checkBoxAutoSave.setCaption("Auto Save");
checkBoxAutoSave.setImmediate(false);
checkBoxAutoSave
.setDescription("Check this to turn-on automatic saving of policy when a change occurs.");
checkBoxAutoSave.setWidth("-1px");
checkBoxAutoSave.setHeight("-1px");
horizontalLayoutToolbar.addComponent(checkBoxAutoSave);
// buttonSave
buttonSave = new Button();
buttonSave.setCaption("Save");
buttonSave.setImmediate(true);
buttonSave.setDescription("Click to save the policy.");
buttonSave.setWidth("-1px");
buttonSave.setHeight("-1px");
horizontalLayoutToolbar.addComponent(buttonSave);
// buttonViewXML
buttonViewXML = new Button();
buttonViewXML.setCaption("View XML");
buttonViewXML.setImmediate(true);
buttonViewXML.setWidth("-1px");
buttonViewXML.setHeight("-1px");
horizontalLayoutToolbar.addComponent(buttonViewXML);
// buttonExport
buttonExport = new Button();
buttonExport.setCaption("Export Policy");
buttonExport.setImmediate(false);
buttonExport.setWidth("-1px");
buttonExport.setHeight("-1px");
horizontalLayoutToolbar.addComponent(buttonExport);
return horizontalLayoutToolbar;
}
示例13: createEditFields
import com.vaadin.ui.CheckBox; //導入方法依賴的package包/類
/** {@inheritDoc} */
@Override
protected ComponentContainer createEditFields() {
final FormLayout form = new ExtaFormLayout();
form.setSizeFull();
activeField = new CheckBox("Активный продукт");
activeField.setDescription("Укажите участвует ли продукт в продажах (учавствует если активен)");
form.addComponent(activeField);
nameField = new EditField("Название продукта", "Введите название продукта");
nameField.setColumns(30);
nameField.setRequired(true);
form.addComponent(nameField);
vendorField = new CompanyField("Банк");
vendorField.setWidth(30, Unit.EM);
form.addComponent(vendorField);
programTypeField = new ProdCredProgSelect("Тип программы", "Выберите тип кредитной программы");
form.addComponent(programTypeField);
minSumField = new EditField("Сумма кредита(min)", "Введите минимальную сумму кредита по программе");
minSumField.setRequired(true);
form.addComponent(minSumField);
maxSumField = new EditField("Сумма кредита(max)", "Введите максимальную сумму кредита по программе");
maxSumField.setRequired(true);
form.addComponent(maxSumField);
minDownpaymentField = new EditField("Первоначальный взнос(min)", "Введите минимальный первоначальный взнос по кредиту (%)");
minDownpaymentField.setRequired(true);
minDownpaymentField.setConverter(lookup(StringToPercentConverter.class));
form.addComponent(minDownpaymentField);
maxDownpaymentField = new EditField("Первоначальный взнос(max)", "Введите максимальный первоначальный взнос по кредиту (%)");
maxDownpaymentField.setRequired(true);
maxDownpaymentField.setConverter(lookup(StringToPercentConverter.class));
form.addComponent(maxDownpaymentField);
minPeriodField = new EditField("Период кредитования(min)", "Введите минимальный период кредитования по продукту");
minPeriodField.setRequired(true);
form.addComponent(minPeriodField);
maxPeriodField = new EditField("Период кредитования(max)", "Введите максимальный период кредитования по продукту");
maxPeriodField.setRequired(true);
form.addComponent(maxPeriodField);
percentsField = new ProdCredPercentField("Процентные ставки", "Введите процентные ставки по кредиту в зависимости от начальных параментов кредита", getEntity());
percentsField.addValueChangeListener(forceModified);
percentsField.setRequired(true);
form.addComponent(percentsField);
stepField = new EditField("Шаг кредита(мес.)", "Введите шаг с которым может увеличиваться период кредитования по продукту");
stepField.setRequired(true);
form.addComponent(stepField);
dealerSubsidyField = new EditField("Субсидия дилера", "Введите процент субсидии дилера (процент от суммы кредита)");
dealerSubsidyField.setRequired(true);
dealerSubsidyField.setConverter(lookup(StringToPercentConverter.class));
form.addComponent(dealerSubsidyField);
docListField = new ProdCredDocsField("Комплект документов", "Введите комплект докуметнов по продукту (обязательные и на выбор", getEntity());
docListField.setRequired(true);
form.addComponent(docListField);
commentField = new TextArea("Примечание");
commentField.setDescription("Введите дополнительную информацию о продукте");
commentField.setNullRepresentation("");
commentField.setInputPrompt("Дополнительная информация о продукте");
commentField.setRows(5);
form.addComponent(commentField);
return form;
}