All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.swm.gwt.client.widget.TextBoxWithAttributes Maven / Gradle / Ivy

The newest version!
package de.swm.gwt.client.widget;

import com.google.gwt.editor.client.EditorError;
import com.google.gwt.editor.client.HasEditorErrors;
import com.google.gwt.user.client.ui.TextBox;

import java.util.List;

/**
 * Eine TextBox an die man zusaetzliche Attribute setzten kann.
 *
 * @author wiese.daniel
 *         
* copyright (C) 2014, Stadtwerke München GmbH */ public class TextBoxWithAttributes extends TextBox implements HasEditorErrors { private final SwmErrorStyleHelper swmErrorStyleHelper; /** * Creates an empty text box. */ public TextBoxWithAttributes() { swmErrorStyleHelper = new SwmErrorStyleHelper(this); } public void setAttribute(String attribute) { this.getElement().setAttribute(attribute, ""); } public void setAttribute(String attribute, String value) { this.getElement().setAttribute(attribute, value); } /** * Setzt den Style-Name fuer einen Fehler. * * @param errorStyleName der Style-Name */ public void setErrorStyleName(String errorStyleName) { swmErrorStyleHelper.setErrorStyleName(errorStyleName); } @Override public void showErrors(List errors) { swmErrorStyleHelper.showErrors(errors); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy