Class CVSEntry
java.lang.Object
org.apache.tools.ant.taskdefs.cvslib.CVSEntry
public class CVSEntry
extends java.lang.Object
CVS Entry.
-
Constructor Summary
Constructors Constructor Description CVSEntry(java.util.Date date, java.lang.String author, java.lang.String comment)
Creates a new instance of a CVSEntry -
Method Summary
Modifier and Type Method Description void
addFile(java.lang.String file, java.lang.String revision)
Adds a file to the CVSEntryvoid
addFile(java.lang.String file, java.lang.String revision, java.lang.String previousRevision)
Adds a file to the CVSEntryjava.lang.String
getAuthor()
Gets the author of the CVSEntryjava.lang.String
getComment()
Gets the comment for the CVSEntryjava.util.Date
getDate()
Gets the date of the CVSEntryjava.util.Vector<org.apache.tools.ant.taskdefs.cvslib.RCSFile>
getFiles()
Gets the files in this CVSEntryvoid
setAuthor(java.lang.String author)
Sets the author of the CVSEntryjava.lang.String
toString()
Gets a String containing author, date, files and comment
-
Constructor Details
-
CVSEntry
public CVSEntry(java.util.Date date, java.lang.String author, java.lang.String comment)Creates a new instance of a CVSEntry- Parameters:
date
- the dateauthor
- the authorcomment
- a comment to be added to the revision
-
-
Method Details
-
addFile
public void addFile(java.lang.String file, java.lang.String revision)Adds a file to the CVSEntry- Parameters:
file
- the file to addrevision
- the revision
-
addFile
public void addFile(java.lang.String file, java.lang.String revision, java.lang.String previousRevision)Adds a file to the CVSEntry- Parameters:
file
- the file to addrevision
- the revisionpreviousRevision
- the previous revision
-
getDate
public java.util.Date getDate()Gets the date of the CVSEntry- Returns:
- the date
-
setAuthor
public void setAuthor(java.lang.String author)Sets the author of the CVSEntry- Parameters:
author
- the author
-
getAuthor
public java.lang.String getAuthor()Gets the author of the CVSEntry- Returns:
- the author
-
getComment
public java.lang.String getComment()Gets the comment for the CVSEntry- Returns:
- the comment
-
getFiles
public java.util.Vector<org.apache.tools.ant.taskdefs.cvslib.RCSFile> getFiles()Gets the files in this CVSEntry- Returns:
- the files
-
toString
public java.lang.String toString()Gets a String containing author, date, files and comment- Overrides:
toString
in classjava.lang.Object
- Returns:
- a string representation of this CVSEntry
-