| java.lang.Object org.apache.tools.ant.taskdefs.cvslib.CVSEntry
CVSEntry | public class CVSEntry (Code) | | CVS Entry.
|
CVSEntry | public CVSEntry(Date date, String author, String comment)(Code) | | Creates a new instance of a CVSEntry
Parameters: date - the date Parameters: author - the author Parameters: comment - a comment to be added to the revision |
addFile | public void addFile(String file, String revision)(Code) | | Adds a file to the CVSEntry
Parameters: file - the file to add Parameters: revision - the revision |
addFile | public void addFile(String file, String revision, String previousRevision)(Code) | | Adds a file to the CVSEntry
Parameters: file - the file to add Parameters: revision - the revision Parameters: previousRevision - the previous revision |
getAuthor | public String getAuthor()(Code) | | Gets the author of the CVSEntry
the author |
getComment | public String getComment()(Code) | | Gets the comment for the CVSEntry
the comment |
getDate | public Date getDate()(Code) | | Gets the date of the CVSEntry
the date |
getFiles | public Vector getFiles()(Code) | | Gets the files in this CVSEntry
the files |
setAuthor | public void setAuthor(String author)(Code) | | Sets the author of the CVSEntry
Parameters: author - the author |
toString | public String toString()(Code) | | Gets a String containing author, date, files and comment
a string representation of this CVSEntry |
|
|