org.wicketstuff.simile.timeline.ITimelineEvent 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;
import java.io.Serializable;
public interface ITimelineEvent extends Serializable {
String getTitle();
String getLink();
String getStartFormatted();
String getEndFormatted();
boolean isDuration();
String getColor();
String getText();
}