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

de.swm.gwt.client.enums.AlwaysNullParser Maven / Gradle / Ivy

There is a newer version: 3.1
Show newest version
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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy