Update of /cvsroot/commonjava/commonjava-projects/commonjava-console
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12426
Modified Files:
.project .classpath
Log Message:
corrected versioning differences...everything is up to date.
Index: .project
===================================================================
RCS file: /cvsroot/commonjava/commonjava-projects/commonjava-console/.project,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- .project 18 Sep 2003 00:46:59 -0000 1.1
+++ .project 20 Feb 2004 21:17:38 -0000 1.2
@@ -2,8 +2,7 @@
<projectDescription>
<name>commonjava-console</name>
- <comment>
- </comment>
+ <comment>Console Framework is getopt on steroids. It contains object formatters, which transform a string read from the command line into any number of object types, along with providing validation that that string conforms to the definition of a valid instance of that type. It contains a Command base object, which can accept multiple command line templates which each define a combination of command-line options that constitute a valid invocation. Command-line templates are merely arrays of Option instances, which in turn are specifications of a short name (invoked as '-f xxx'), a long name (invoked as "--file=xxx"), possibly an OptionFormat value (these are a pseudo-enumerated type with added functionality outlined above), and a description of what the option means to the command line. The command itself is instantiated with a description of what it does, plus an optional description of what the non-option arguments mean to the invocation. In addition, the empty command template can be en/disabled (invocation with no options), and the in/out/err streams can be set. Built on top of all this is the notion of a Console, which accepts and parses a command invocation from somewhere into an array of strings (static void main(String[] args) style), and then looks up the appropriate command instance and invokes it with the options. The BasicConsole has a help command built in, which shows all available commands and their associated usages.</comment>
<projects>
</projects>
<buildSpec>
Index: .classpath
===================================================================
RCS file: /cvsroot/commonjava/commonjava-projects/commonjava-console/.classpath,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- .classpath 15 Dec 2003 01:51:11 -0000 1.3
+++ .classpath 20 Feb 2004 21:17:38 -0000 1.4
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <classpathentry kind="src" path="src/java">
+ <classpathentry kind="src" path="src\java">
</classpathentry>
<classpathentry kind="var" rootpath="JRE_SRCROOT" path="JRE_LIB" sourcepath="JRE_SRC">
</classpathentry>
@@ -11,6 +11,6 @@
</classpathentry>
<classpathentry kind="var" path="MAVEN_REPO/commons-logging/jars/commons-logging-1.0.2.jar">
</classpathentry>
- <classpathentry kind="output" path="target/classes">
+ <classpathentry kind="output" path="target\classes">
</classpathentry>
</classpath>
\ No newline at end of file
|