Java Doc for ChangeLogTask.java in  » Build » ANT » org » apache » tools » ant » taskdefs » cvslib » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Build » ANT » org.apache.tools.ant.taskdefs.cvslib 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.tools.ant.taskdefs.AbstractCvsTask
   org.apache.tools.ant.taskdefs.cvslib.ChangeLogTask

ChangeLogTask
public class ChangeLogTask extends AbstractCvsTask (Code)
Examines the output of cvs log and group related changes together. It produces an XML output representing the list of changes.
 <!-- Root element -->
 <!ELEMENT changelog 
 (entry+)
 >
 <!-- CVS Entry -->
 <!ELEMENT entry 
 (date,author,file+,msg)
 >
 <!-- Date of cvs entry -->
 <!ELEMENT date (#PCDATA)
 >
 <!-- Author of change -->
 <!ELEMENT author (#PCDATA)
 >
 <!-- List of files affected -->
 <!ELEMENT msg (#PCDATA)
 >
 <!-- File changed -->
 <!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




Method Summary
public  voidaddFileset(FileSet fileSet)
     Adds a set of files about which cvs logs will be generated.
public  voidaddUser(CvsUser user)
     Add a user to list changelog knows about.
public  voidexecute()
    
public  voidsetDaysinpast(int days)
     Set the number of days worth of log entries to process.
public  voidsetDestfile(File destFile)
     Set the output file for the log.
public  voidsetDir(File inputDir)
     Set the base dir for cvs.
public  voidsetEnd(Date endDate)
     Set the date at which the changelog should stop.
public  voidsetStart(Date start)
     Set the date at which the changelog should start.
public  voidsetUsersfile(File usersFile)
    



Method Detail
addFileset
public void addFileset(FileSet fileSet)(Code)
Adds a set of files about which cvs logs will be generated.
Parameters:
  fileSet - a set of files about which cvs logs will be generated.



addUser
public void addUser(CvsUser user)(Code)
Add a user to list changelog knows about.
Parameters:
  user - the user



execute
public void execute() throws BuildException(Code)
Execute task
exception:
  BuildException - if something goes wrong executing thecvs command



setDaysinpast
public void setDaysinpast(int days)(Code)
Set the number of days worth of log entries to process.
Parameters:
  days - the number of days of log to process.



setDestfile
public void setDestfile(File destFile)(Code)
Set the output file for the log.
Parameters:
  destFile - The new destfile value



setDir
public void setDir(File inputDir)(Code)
Set the base dir for cvs.
Parameters:
  inputDir - The new dir value



setEnd
public void setEnd(Date endDate)(Code)
Set the date at which the changelog should stop.
Parameters:
  endDate - The date at which the changelog should stop.



setStart
public void setStart(Date start)(Code)
Set the date at which the changelog should start.
Parameters:
  start - The date at which the changelog should start.



setUsersfile
public void setUsersfile(File usersFile)(Code)
Set a lookup list of user names & addresses
Parameters:
  usersFile - The file containing the users info.



Fields inherited from org.apache.tools.ant.taskdefs.AbstractCvsTask
final public static int DEFAULT_COMPRESSION_LEVEL(Code)(Java Doc)

Methods inherited from org.apache.tools.ant.taskdefs.AbstractCvsTask
public void addCommandArgument(String arg)(Code)(Java Doc)
public void addCommandArgument(Commandline c, String arg)(Code)(Java Doc)
public void addConfiguredCommandline(Commandline c)(Code)(Java Doc)
public void addConfiguredCommandline(Commandline c, boolean insertAtStart)(Code)(Java Doc)
protected void configureCommandline(Commandline c)(Code)(Java Doc)
public void execute() throws BuildException(Code)(Java Doc)
public String getCommand()(Code)(Java Doc)
public String getCvsRoot()(Code)(Java Doc)
public String getCvsRsh()(Code)(Java Doc)
public File getDest()(Code)(Java Doc)
protected OutputStream getErrorStream()(Code)(Java Doc)
protected ExecuteStreamHandler getExecuteStreamHandler()(Code)(Java Doc)
protected OutputStream getOutputStream()(Code)(Java Doc)
public String getPackage()(Code)(Java Doc)
public File getPassFile()(Code)(Java Doc)
public int getPort()(Code)(Java Doc)
public String getTag()(Code)(Java Doc)
protected void removeCommandline(Commandline c)(Code)(Java Doc)
protected void runCommand(Commandline toExecute) throws BuildException(Code)(Java Doc)
public void setAppend(boolean value)(Code)(Java Doc)
public void setCommand(String c)(Code)(Java Doc)
public void setCompression(boolean usecomp)(Code)(Java Doc)
public void setCompressionLevel(int level)(Code)(Java Doc)
public void setCvsRoot(String root)(Code)(Java Doc)
public void setCvsRsh(String rsh)(Code)(Java Doc)
public void setDate(String p)(Code)(Java Doc)
public void setDest(File dest)(Code)(Java Doc)
public void setError(File error)(Code)(Java Doc)
protected void setErrorStream(OutputStream errorStream)(Code)(Java Doc)
public void setExecuteStreamHandler(ExecuteStreamHandler handler)(Code)(Java Doc)
public void setFailOnError(boolean failOnError)(Code)(Java Doc)
public void setNoexec(boolean ne)(Code)(Java Doc)
public void setOutput(File output)(Code)(Java Doc)
protected void setOutputStream(OutputStream outputStream)(Code)(Java Doc)
public void setPackage(String p)(Code)(Java Doc)
public void setPassfile(File passFile)(Code)(Java Doc)
public void setPort(int port)(Code)(Java Doc)
public void setQuiet(boolean q)(Code)(Java Doc)
public void setReallyquiet(boolean q)(Code)(Java Doc)
public void setTag(String p)(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.