|
From: <lh...@us...> - 2008-10-21 16:49:51
|
Revision: 169
http://tinytim.svn.sourceforge.net/tinytim/?rev=169&view=rev
Author: lheuer
Date: 2008-10-21 16:49:49 +0000 (Tue, 21 Oct 2008)
Log Message:
-----------
- Next try to commit the Console.java
- DOES NOT work with tinyTiM trunk
Modified Paths:
--------------
tinytim-console/trunk/src/main/java/org/tinytim/console/Console.java
Modified: tinytim-console/trunk/src/main/java/org/tinytim/console/Console.java
===================================================================
--- tinytim-console/trunk/src/main/java/org/tinytim/console/Console.java 2008-10-10 12:31:22 UTC (rev 168)
+++ tinytim-console/trunk/src/main/java/org/tinytim/console/Console.java 2008-10-21 16:49:49 UTC (rev 169)
@@ -269,4 +269,35 @@
private class ReadCommand extends AbstractCommand {
public ReadCommand() {
- super("read <source:
\ No newline at end of file
+ super("read <source:url> into <target:url> [using <syntax:identifier>]",
+ "Reads the content from a source into a local topic map");
+ }
+
+ /* (non-Javadoc)
+ * @see org.tinytim.console.ICommand#execute(java.lang.String[], java.io.PrintStream)
+ */
+ public void execute(String[] args) {
+ _println("Not implemented yet. Sorry.");
+ }
+
+ }
+
+ /**
+ * Serializes a topic map.
+ */
+ private class WriteCommand extends AbstractCommand {
+
+ public WriteCommand() {
+ super("write <source:url> to <target:url> [<syntax:identifier>]",
+ "Exports a topic map");
+ }
+
+ /* (non-Javadoc)
+ * @see org.tinytim.console.ICommand#execute(java.lang.String[])
+ */
+ public void execute(String[] args) {
+ _println("Not implemented yet. Sorry.");
+ }
+
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|