diff Paper/source/StartCodeSegment.java @ 9:25a3002cb1e6

add image and source files
author e095732 <e095732@ie.u-ryukyu.ac.jp>
date Tue, 20 Nov 2012 18:32:20 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Paper/source/StartCodeSegment.java	Tue Nov 20 18:32:20 2012 +0900
@@ -0,0 +1,15 @@
+public class StartCodeSegment extends CodeSegment {
+
+    @Override
+	public void run() {
+	System.out.println("run StartCodeSegment");
+	
+	TestCodeSegment cs = new TestCodeSegment();
+	cs.input1.setKey("local", "key1");
+
+	System.out.println("create TestCodeSegment");
+	
+	ods.update("local", "key1", "String data");
+    }
+
+}
\ No newline at end of file