org.ztemplates.property.ZStringProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ztemplates Show documentation
Show all versions of ztemplates Show documentation
java web framework - annotations - pojo - NO XML -
state-free - clean, technology agnostic urls - REST -
invisible to the web-client -
JSP, Velocity, FreeMarker (others pluggable) -
annotations for JavaScript/CSS dependencies - create reusable components
The newest version!
/*
* 17.07.2006
* @author www.gerdziegler.de
*/
package org.ztemplates.property;
public class ZStringProperty extends ZProperty
{
public ZStringProperty()
{
}
@Override
public String parse(String formattedValue)
{
return formattedValue;
}
@Override
public String format(String obj)
{
return obj;
}
}