當前位置: 首頁>>代碼示例>>Java>>正文


Java TextField.setRequiredError方法代碼示例

本文整理匯總了Java中com.vaadin.ui.TextField.setRequiredError方法的典型用法代碼示例。如果您正苦於以下問題:Java TextField.setRequiredError方法的具體用法?Java TextField.setRequiredError怎麽用?Java TextField.setRequiredError使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.vaadin.ui.TextField的用法示例。


在下文中一共展示了TextField.setRequiredError方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getPropertyField

import com.vaadin.ui.TextField; //導入方法依賴的package包/類
@Override
public Field getPropertyField(FormProperty formProperty) {
  final TextField textField = new TextField(getPropertyLabel(formProperty));
  textField.setRequired(formProperty.isRequired());
  textField.setEnabled(formProperty.isWritable());
  textField.setRequiredError(getMessage(Messages.FORM_FIELD_REQUIRED, getPropertyLabel(formProperty)));
  
  if (formProperty.getValue() != null) {
    textField.setValue(formProperty.getValue());
  }

  // Add validation of numeric value
  textField.addValidator(new LongValidator("Value must be a long"));
  textField.setImmediate(true);

  return textField;
}
 
開發者ID:logicalhacking,項目名稱:SecureBPMN,代碼行數:18,代碼來源:LongFormPropertyRenderer.java

示例2: getPropertyField

import com.vaadin.ui.TextField; //導入方法依賴的package包/類
@Override
public Field getPropertyField(FormProperty formProperty) {
  TextField textField = new TextField(getPropertyLabel(formProperty));
  textField.setRequired(formProperty.isRequired());
  textField.setEnabled(formProperty.isWritable());
  textField.setRequiredError(getMessage(Messages.FORM_FIELD_REQUIRED, getPropertyLabel(formProperty)));

  if (formProperty.getValue() != null) {
    textField.setValue(formProperty.getValue());
  }

  return textField;
}
 
開發者ID:logicalhacking,項目名稱:SecureBPMN,代碼行數:14,代碼來源:StringFormPropertyRenderer.java

示例3: initUrl

import com.vaadin.ui.TextField; //導入方法依賴的package包/類
protected void initUrl() {
  TextField urlField = new TextField(i18nManager.getMessage(Messages.RELATED_CONTENT_TYPE_URL_URL));
  urlField.focus();
  urlField.setRequired(true);
  urlField.setRequiredError(i18nManager.getMessage(Messages.RELATED_CONTENT_TYPE_URL_URL_REQUIRED));
  urlField.setWidth(100, UNITS_PERCENTAGE);
  // URL isn't mutable once attachment is created
  if(attachment != null) {
    urlField.setEnabled(false);
  }
  
  addField("url", urlField);
}
 
開發者ID:logicalhacking,項目名稱:SecureBPMN,代碼行數:14,代碼來源:UrlAttachmentEditorComponent.java

示例4: initName

import com.vaadin.ui.TextField; //導入方法依賴的package包/類
protected void initName() {
  TextField nameField = new TextField(i18nManager.getMessage(Messages.RELATED_CONTENT_NAME));
  nameField.focus();
  nameField.setRequired(true);
  nameField.setRequiredError(i18nManager.getMessage(Messages.RELATED_CONTENT_NAME_REQUIRED));
  nameField.setWidth(100, UNITS_PERCENTAGE);
  form.addField("name", nameField);
}
 
開發者ID:logicalhacking,項目名稱:SecureBPMN,代碼行數:9,代碼來源:FileAttachmentEditorComponent.java

示例5: initForm

import com.vaadin.ui.TextField; //導入方法依賴的package包/類
protected void initForm() {
  form = new Form();
  form.setValidationVisibleOnCommit(true);
  form.setImmediate(true);
  addComponent(form);
  
  // name
  nameField = new TextField(i18nManager.getMessage(Messages.TASK_NAME));
  nameField.focus();
  nameField.setRequired(true);
  nameField.setRequiredError(i18nManager.getMessage(Messages.TASK_NAME_REQUIRED));
  form.addField("name", nameField);
  
  // description
  descriptionArea = new TextArea(i18nManager.getMessage(Messages.TASK_DESCRIPTION));
  descriptionArea.setColumns(25);
  form.addField("description", descriptionArea);
  
  // duedate
  dueDateField = new DateField(i18nManager.getMessage(Messages.TASK_DUEDATE));
  dueDateField.setResolution(DateField.RESOLUTION_DAY);
  form.addField("duedate", dueDateField);
  
  // priority
  priorityComboBox = new PriorityComboBox(i18nManager);
  form.addField("priority", priorityComboBox);
}
 
開發者ID:logicalhacking,項目名稱:SecureBPMN,代碼行數:28,代碼來源:NewCasePopupWindow.java

示例6: showAddProjectDialog

import com.vaadin.ui.TextField; //導入方法依賴的package包/類
/**
 * Zeige das Projekt-Hinzufuegen-Dialogfenster, bei dem ein Eingabefeld fuer
 * den Namen des Projekts und ein Hinzfuege-Button vorhanden ist. Funktion
 * bei geklicktem Button siehe Clicklistener in dieser Klasse. Das
 * horizontale Layout zur Darstellung besitzt ein Formlayout und den Button,
 * die nebeneinander dargestellt werden.
 * 
 * @author Christian Scherer, Mirko Göpfrich
 */
@Override
public void showAddProjectDialog() {
	addDialog = new Window("Projekt hinzufügen");
	addDialog.setModal(true);
	addDialog.setWidth(410, UNITS_PIXELS);
	addDialog.setResizable(false);
	addDialog.setDraggable(false);

	VerticalLayout layout = new VerticalLayout();
	layout.setSpacing(false);

	FormLayout formLayout = new FormLayout();
	formLayout.setMargin(true);
	formLayout.setSpacing(true);
	
	//TextFeld für Name dem Formular hinzufügen
	tfName = new TextField("Name wählen:");
	tfName.setRequired(true);
	tfName.addValidator(new StringLengthValidator(
			"Der Projektname muss zwischen 2 und 20 Zeichen lang sein.", 2,
			20, false));
	tfName.setRequiredError("Pflichtfeld");
	tfName.setSizeFull();
	formLayout.addComponent(tfName);
	
	//TextArea für Beschreibung dem Formular hinzufügen
	taDescription = new TextArea("Beschreibung wählen");
	taDescription.setSizeFull();
	formLayout.addComponent(taDescription);
	
	//Formular dem Layout hinzufügen
	layout.addComponent(formLayout);
	
	//Hinzufüge-Button erstllen und dem Layout hinzufügen
	dialogAddBtn = new Button("Hinzufügen", this);
	layout.addComponent(dialogAddBtn);
	
	//Layout dem Dialog-Fenster hinzufügen
	addDialog.addComponent(layout);

	//Dialog dem Hauptfenster hinzufügen
	getWindow().addWindow(addDialog);
	logger.debug("Hinzufuege-Dialog erzeugt");
}
 
開發者ID:DHBW-Karlsruhe,項目名稱:businesshorizon2,代碼行數:54,代碼來源:ProjectListViewImpl.java

示例7: showEditProjectDialog

import com.vaadin.ui.TextField; //導入方法依賴的package包/類
/**Methode zur Implementierung des Dialogfensters für Projekt-Änderungen.
 * 
 */
@Override
public void showEditProjectDialog(Project project) {
	editDialog = new Window("Projekt bearbeiten");
	editDialog.setModal(true);
	editDialog.setWidth(410, UNITS_PIXELS);
	editDialog.setResizable(false);
	editDialog.setDraggable(false);


	VerticalLayout layout = new VerticalLayout();
	layout.setSpacing(true);

	FormLayout formLayout = new FormLayout();
	formLayout.setMargin(true);
	formLayout.setSpacing(true);
	
	//TextFeld für Name dem Formular hinzufügen
	tfName = new TextField("Name ändern:", project.getName());
	tfName.setRequired(true);
	tfName.addValidator(new StringLengthValidator(
			"Der Projektname muss zwischen 2 und 20 Zeichen lang sein.", 2,
			20, false));
	tfName.setRequiredError("Pflichtfeld");
	tfName.setSizeFull();
	formLayout.addComponent(tfName);
	
	//TextArea für Beschreibung dem Formular hinzufügen
	taDescription = new TextArea("Beschreibung ändern:", project.getDescription());
	taDescription.setSizeFull();
	formLayout.addComponent(taDescription);
	
	//Formular dem Layout hinzufügen
	layout.addComponent(formLayout);
	
	//Speichern-Button erstllen und dem Layout hinzufügen
	//TODO: ist das korrekt? Gute Frage, I have no idea what u r doing
	dialogEditBtn = new Button("Speichern");
	layout.addComponent(dialogEditBtn);
	
	dialogEditBtn.addListener(new Button.ClickListener() {
		private static final long serialVersionUID = 1L;

		public void buttonClick(ClickEvent event) {
				
			if (tfName.isValid()) {
				boolean succed = presenter.editProject(projects.get(indexEditBtn), (String) tfName.getValue(), (String) taDescription.getValue());
				if (succed) {
					getWindow().removeWindow(editDialog);
					logger.debug("Projekt-bearbeiten Dialog geschlossen");
					
				}
					
			} else {
				getWindow().showNotification(
					"",
					"Projektname ist ein Pflichtfeld. Bitte geben Sie einen Projektnamen an",
					Notification.TYPE_ERROR_MESSAGE);
			}		
		}
	});
	
	//Layout dem Dialog-Fenster hinzufügen
	editDialog.addComponent(layout);

	//Dialog dem Hauptfenster hinzufügen
	getWindow().addWindow(editDialog);
	logger.debug("Bearbeiten-Dialog erzeugt");
	
}
 
開發者ID:DHBW-Karlsruhe,項目名稱:businesshorizon2,代碼行數:73,代碼來源:ProjectListViewImpl.java


注:本文中的com.vaadin.ui.TextField.setRequiredError方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。