
org.apache.wicket.examples.basic.guestbook.Comment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wicket-examples-jar Show documentation
Show all versions of wicket-examples-jar Show documentation
Jar file for the Wicket examples.
The newest version!
package org.apache.wicket.examples.basic.guestbook;
import java.util.Date;
public class Comment {
private final String author;
private final String text;
private final Date createdAt;
public Comment(String author, String text) {
this.author = author;
this.text = text;
this.createdAt = new Date();
}
public String getAuthor() {
return author;
}
public String getText() {
return text;
}
public Date getCreatedAt() {
return createdAt;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy