package bluej.groupwork;
| Represents a single element of history information. This includes:
| Filename, revision, date, user, comment
|
| @author Davin McCall
| @version $Id: HistoryInfo.java 6215 2009-03-30 13:28:25Z polle $
|
public class HistoryInfo
{
private String [] files;
private String revision;
private String date;
private String user;
private String comment;
public HistoryInfo(String [] files, String revision, String date, String user, String comment)
{
this.files = files;
this.revision = revision;
this.date = date;
this.user = user;
this.comment = comment;
}
public String [] getFiles()
{
return files;
}
public String getRevision()
{
return revision;
}
public String getDate()
{
return date;
}
public String getUser()
{
return user;
}
public String getComment()
{
return comment;
}
}
top,
use,
map,
class HistoryInfo
. HistoryInfo
. getFiles
. getRevision
. getDate
. getUser
. getComment
63 neLoCode
+ 4 LoComm