org.apache.commons.jrcs.rcs

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 » ERP CRM Financial » sakai » org.apache.commons.jrcs.rcs 
org.apache.commons.jrcs.rcs
JRCS is a library that knows how to manipulate the archive files produced by the RCS and CVS version control systems.

JRCS is not intended to replace RCS nor CVS. JRCS was written to be able create archive analysis tools that can do things like identify hot spots in the source code, measure the contributions by each developer, or assess how bugs make it in.

The reasons why JRCS has the ability do do check-ins and save archives is API symmetry, and to simplify the writing of unit tests.

The {@link org.apache.maven.jrcs.rcs rcs} package implements th8e archive handling functionality. The entry point to the library is class {@link org.apache.maven.jrcs.rcs.Archive Archive}.

CAVEAT UTILITOR: Do not make modifications to your archives with JRCS. There needs to be an important amount of additional testing before it's safe to do that.

The {@link org.apache.maven.jrcs.diff diff} package implements the differencing engine that JRCS uses. The engine has the power of Unix diff, is simple to understand, and can be used independently of the archive handling functionality. The entry point to the differencing engine is class {@link org.apache.maven.jrcs.diff.Diff Diff}.

Package Dependencies

Jakarta ORO Regexp

The Jakarta ORO Regexp library is used for RCS keyword management. You can get a copy of Jakarta ORO from:

http://jakarta.apache.org/oro/

A copy of Jakarta Regexp is included in the full distribution of this library.

JavaCC

The RCS parser is constructed using the JavaCC compiler compiler. You can get a copy of JavaCC from:

http://www.metamata.com/javacc/

JavaCC is not distributable, so you must get a copy of it yourself if you intend to use it. Keep in mind that, as distributed, this library does not require JavaCC to be compiled because all the JavaCC generated .java files are included.

If you decide to use JavaCC, please adjust the "javacc.lib.dir" property as needed. You'll also need to download the set of optional tasks for Ant.

JUnit

The library tests are written for the JUnit Testing Framework. For distributions and documentation see:

http://www.junit.org/

@author Juanco Anez @version $Id: Archive.java,v 1.16 2002/02/27 20:58:58 sbailliez Exp $ @see Archive @see org.apache.maven.jrcs.diff.Diff

Java Source File NameTypeComment
Archive.javaClass Handling of RCS/CVS style version control archives.

JRCS is a library that knows how to manipulate the archive files produced by the RCS and CVS version control systems.

ArchiveParser.javaClass Parses an RCS/CVS style version control archive into an Archive.
ArchiveParserConstants.javaInterface
ArchiveParserTokenManager.javaClass
ArchiveTest.javaClass
BranchNode.javaClass Represents a branch node in a version control archive.
BranchNotFoundException.javaClass
ChangeDeltaTest.javaClass
HeadAlreadySetException.javaClass Thrown if the ArchiveParser finds that the head node is set more than once.
InvalidBranchVersionNumberException.javaClass Thrown if the version number given for a branch node is invalid.
InvalidFileFormatException.javaClass Thrown if the ArchiveParser cannot parse a given archive.
InvalidTrunkVersionNumberException.javaClass Thrown if the version number given for a trunk node is invalid.
InvalidVersionNumberException.javaClass Thrown whenever a given version number is invalid for the context.
KeywordsFormat.javaClass Formatter for the RCS keywords.
KeywordsFormatTest.javaClass Basic test for the formatter.
Line.javaClass An annotated line of a revision.
Lines.javaClass A list of the lines in the text of a revision annotated with the version that corresponds to each line.
Node.javaClass Ancestor to all nodes in a version control Archive.
NodeNotFoundException.javaClass
ParseException.javaClass This exception is thrown when parse errors are encountered.
ParsingTest.javaClass
Path.javaClass A path from the head revision to a given revision in an Archive.
Phrases.javaClass A set of "new phrases" for an Archive. Phrases are keyed lists of symbols.
RCSException.javaClass
SimpleCharStream.javaClass An implementation of interface CharStream, where the stream is assumed to contain only ASCII characters (without unicode processing).
Token.javaClass Describes the input token stream.
TokenMgrError.javaClass
TrunkNode.javaClass Represents a node on the trunk or main branch of a version control Archive.
Version.javaClass Contains and manages a version number of the form "x(\.y)*".
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.