Methods Summary |
---|
public void | addFile(java.lang.String file, java.lang.String revision)Adds a file to the CVSEntry
files.addElement(new RCSFile(file, revision));
|
public void | addFile(java.lang.String file, java.lang.String revision, java.lang.String previousRevision)Adds a file to the CVSEntry
files.addElement(new RCSFile(file, revision, previousRevision));
|
public java.lang.String | getAuthor()Gets the author of the CVSEntry
return author;
|
public java.lang.String | getComment()Gets the comment for the CVSEntry
return comment;
|
public java.util.Date | getDate()Gets the date of the CVSEntry
return date;
|
public java.util.Vector | getFiles()Gets the files in this CVSEntry
return files;
|
public void | setAuthor(java.lang.String author)Sets the author of the CVSEntry
this.author = author;
|
public java.lang.String | toString()Gets a String containing author, date, files and comment
return getAuthor() + "\n" + getDate() + "\n" + getFiles() + "\n"
+ getComment();
|