Mercurial > hg > Database > Alice
annotate src/alice/test/codesegment/api/TestMetaCodeSegment.java @ 335:2f003d5703d5 META_CODESEGMENT
Meta CodeSegment Test
author | sugi |
---|---|
date | Mon, 14 Apr 2014 15:46:29 +0900 |
parents | |
children |
rev | line source |
---|---|
335 | 1 package alice.test.codesegment.api; |
2 | |
3 import alice.codesegment.CodeSegment; | |
4 import alice.daemon.AliceDaemon; | |
5 import alice.daemon.Config; | |
6 | |
7 public class TestMetaCodeSegment extends CodeSegment{ | |
8 public static void main(String[] args){ | |
9 new AliceDaemon(new Config(args)).listen(); | |
10 new TestMetaCodeSegment().execute(); | |
11 } | |
12 | |
13 @Override | |
14 public void run() { | |
15 new PrintText(); | |
16 ods.put("TEST", "START"); | |
17 } | |
18 | |
19 } |