Skip to content

Instantly share code, notes, and snippets.

@jbaruch
Created October 10, 2014 08:40
Show Gist options
  • Save jbaruch/340e89f1c1e6c3c6ed98 to your computer and use it in GitHub Desktop.
Save jbaruch/340e89f1c1e6c3c6ed98 to your computer and use it in GitHub Desktop.
package conference;
import java.util.Date;
/**
* Created by Jeka on 07/10/2014.
*/
public class Talk {
private Long talkId;
private Date when;
private String title;
public Talk() {
}
public Talk(String title, Date date) {
this.title = title;
this.when = date;
}
@Override
public String toString() {
return title;
}
public Date getWhen() {
return when;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment