de.swm.gwt.client.widget.LongBoxWithAttributes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swm-gwt-client Show documentation
Show all versions of swm-gwt-client Show documentation
Plain GWT Swm erweiterungen, auch zur benutzung in mobilen Geraeten
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.LongBox;
import com.google.gwt.user.client.ui.TextBox;
import java.util.List;
/**
* Eine LongBox an die man zusaetzliche Attribute setzten kann.
*
* @author wiese.daniel
*
* copyright (C) 2014, Stadtwerke München GmbH
*/
public class LongBoxWithAttributes extends LongBox implements HasEditorErrors {
private final SwmErrorStyleHelper swmErrorStyleHelper;
/**
* Creates an empty text box.
*/
public LongBoxWithAttributes() {
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);
}
}