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

org.ztemplates.property.ZStringProperty Maven / Gradle / Ivy

Go to download

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;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy