org.wicketstuff.simile.timeline.json.JSONRawString Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simile-timeline Show documentation
Show all versions of simile-timeline Show documentation
Simile Timeline widget for Wicket
package org.wicketstuff.simile.timeline.json;
import net.sf.json.JSONFunction;
/**
* should not be u
*
* @author arnouten
*/
public class JSONRawString extends JSONFunction {
/**
*
*/
private static final long serialVersionUID = 1L;
public JSONRawString(String text) {
super(text);
}
@Override
public String toString() {
return getText();
}
}