org.wicketstuff.simile.timeline.model.RawString 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.model;
public class RawString {
private String string;
public RawString(String string)
{
this.string = string;
}
@Override
public String toString() {
return string;
}
}