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

de.swm.gwt.client.generator.ui.Snippet Maven / Gradle / Ivy

The newest version!
package de.swm.gwt.client.generator.ui;


import com.google.gwt.user.client.ui.Composite;

/**
 * Steuerung Klassen fuer die UI-Templates der SWM Anwendungsgenerators >=4.0.
 * Diese Klassen werden als Meta-Informationen in der gwt ui.xml Vorlage verwendet
 * und rendern sich ohne siteneffekte so als ob sie nicht exitent sind.
 *
 * @author wiese.daniel
 *         
* copyright (C) 2014, Stadtwerke München GmbH */ public class Snippet extends Composite { private String clazz; /** * True wenn das Attribut provided ist. */ private boolean provided; /** * * Map as java.sql.Date *

* DATE, *

* /** * Map as java.sql.Time *

* TIME, *

* /** * Map as java.sql.Timestamp *

* TIMESTAMP */ private String dateFormat; private boolean generic; public String getClazz() { return clazz; } public void setClazz(String clazz) { this.clazz = clazz; } public boolean isGeneric() { return generic; } public void setGeneric(boolean generic) { this.generic = generic; } public String getDateFormat() { return dateFormat; } public void setDateFormat(String dateFormat) { this.dateFormat = dateFormat; } public boolean isProvided() { return provided; } public void setProvided(boolean provided) { this.provided = provided; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy