Java Reference
In-Depth Information
private Long id;
@Persistent
private String email;
@Persistent
private String project;
@Persistent
private String milestone;
@Persistent
private Boolean billable;
@Persistent
private Date date;
@Persistent
private double hours;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getProject() {
return project;
}
public void setProject(String project) {
this.project = project;
}
public String getMilestone() {
return milestone;
}
Search WWH ::




Custom Search