OSDN Git Service

update command line interface, and introduce command pattern in Main class
authortama3 <tama3@acee48c3-7b26-0410-bdac-b3d0e5314bbc>
Tue, 9 Dec 2008 07:49:44 +0000 (07:49 +0000)
committertama3 <tama3@acee48c3-7b26-0410-bdac-b3d0e5314bbc>
Tue, 9 Dec 2008 07:49:44 +0000 (07:49 +0000)
commitc85b31844b68504fd68b17c1a1305815297eebbe
tree5fc18688f39d592a56bd1b4137b7b4ddada7704b
parent7cffc30ee7bd38a298928ba97fe9500bcb319ae3
update command line interface, and introduce command pattern in Main class

git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/stigmata/trunk@347 acee48c3-7b26-0410-bdac-b3d0e5314bbc
23 files changed:
src/main/java/jp/sourceforge/stigmata/BirthmarkContext.java
src/main/java/jp/sourceforge/stigmata/BirthmarkEnvironment.java
src/main/java/jp/sourceforge/stigmata/Main.java
src/main/java/jp/sourceforge/stigmata/Stigmata.java
src/main/java/jp/sourceforge/stigmata/StigmataCommand.java [new file with mode: 0644]
src/main/java/jp/sourceforge/stigmata/birthmarks/extractors/AbstractBirthmarkExtractorService.java
src/main/java/jp/sourceforge/stigmata/command/AbstractStigmataCommand.java [new file with mode: 0644]
src/main/java/jp/sourceforge/stigmata/command/CompareCommand.java [new file with mode: 0644]
src/main/java/jp/sourceforge/stigmata/command/ExportConfigCommand.java [new file with mode: 0644]
src/main/java/jp/sourceforge/stigmata/command/ExtractCommand.java [new file with mode: 0644]
src/main/java/jp/sourceforge/stigmata/command/GuiCommand.java [new file with mode: 0644]
src/main/java/jp/sourceforge/stigmata/command/HelpCommand.java [new file with mode: 0644]
src/main/java/jp/sourceforge/stigmata/command/InstallCommand.java [new file with mode: 0644]
src/main/java/jp/sourceforge/stigmata/command/LicenseCommand.java [new file with mode: 0644]
src/main/java/jp/sourceforge/stigmata/command/ListBirthmarksCommand.java [new file with mode: 0644]
src/main/java/jp/sourceforge/stigmata/command/StigmataCommandFactory.java [new file with mode: 0644]
src/main/java/jp/sourceforge/stigmata/command/UninstallCommand.java [new file with mode: 0644]
src/main/java/jp/sourceforge/stigmata/command/VersionCommand.java [new file with mode: 0644]
src/main/resources/resources/options.properties
src/main/resources/resources/options.xml
src/main/resources/resources/options_ja.source
src/main/resources/resources/stigmata.xml
src/test/java/jp/sourceforge/stigmata/birthmarks/cvfv/CVFVBirthmarkExtractorTest.java