Mercurial > hg > Papers > 2013 > sugi-thesis
annotate paper/source/StartCodeSegment.java @ 13:db3b8eaba7b0 default tip
add presen
author | sugi |
---|---|
date | Fri, 22 Feb 2013 16:18:39 +0900 |
parents | b817e83013a7 |
children |
rev | line source |
---|---|
5 | 1 public class StartCodeSegment extends CodeSegment { |
2 | |
3 @Override | |
4 public void run() { | |
5 System.out.println("run StartCodeSegment"); | |
6 | |
7 TestCodeSegment cs = new TestCodeSegment(); | |
8 cs.input1.setKey("local", "key1"); | |
9 | |
10 System.out.println("create TestCodeSegment"); | |
11 | |
12 ods.update("local", "key1", "String data"); | |
13 } | |
14 | |
15 } |