org.apache.tools.ant.taskdefs.cvslib
public class CvsTagDiff extends AbstractCvsTask
<!-- Root element --> <!ELEMENT tagdiff ( entry+ ) > <!-- Start tag of the report --> <!ATTLIST tagdiff startTag NMTOKEN #IMPLIED > <!-- End tag of the report --> <!ATTLIST tagdiff endTag NMTOKEN #IMPLIED > <!-- Start date of the report --> <!ATTLIST tagdiff startDate NMTOKEN #IMPLIED > <!-- End date of the report --> <!ATTLIST tagdiff endDate NMTOKEN #IMPLIED > <!-- CVS tag entry --> <!ELEMENT entry ( file ) > <!-- File added, changed or removed --> <!ELEMENT file ( name, revision?, prevrevision? ) > <!-- Name of the file --> <!ELEMENT name ( #PCDATA ) > <!-- Revision number --> <!ELEMENT revision ( #PCDATA ) > <!-- Previous revision number --> <!ELEMENT prevrevision ( #PCDATA ) >
Since: Ant 1.5
UNKNOWN: name="cvstagdiff"
Method Summary | |
---|---|
void | execute()
Execute task.
|
void | setDestFile(File f)
Set the output file for the diff.
|
void | setEndDate(String s)
Set the end date.
|
void | setEndTag(String s)
Set the end tag.
|
void | setIgnoreRemoved(boolean b)
Set the ignore removed indicator.
|
void | setPackage(String p)
The package/module to analyze. |
void | setStartDate(String s)
Set the start date.
|
void | setStartTag(String s)
Set the start tag.
|
Throws: BuildException if an error occurs
Parameters: f the output file for the diff.
Parameters: s the end date.
Parameters: s the end tag.
Parameters: b the ignore removed indicator.
Since: Ant 1.8.0
Parameters: p the name of the package to analyse
Parameters: s the start date.
Parameters: s the start tag.