de.swm.gwt.client.enums.AlwaysNullParser 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
package de.swm.gwt.client.enums;
import com.google.gwt.text.shared.Parser;
import de.swm.gwt.client.I18NEnum;
import java.text.ParseException;
/**
* Hilfklasse fuer die Read-Only darstellung von Enums.
*
* @author wiese.daniel
*
* copyright (C) 2014, Stadtwerke München GmbH
*/
public class AlwaysNullParser implements Parser {
@Override
public T parse(CharSequence text) throws ParseException {
return null;
}
}