Mercurial > hg > Database > Alice
comparison src/main/java/alice/test/reflection/MetaCodeSegment.java @ 418:a269a019f5f8 dispose
reflection test
author | sugi |
---|---|
date | Tue, 15 Jul 2014 06:15:53 +0900 |
parents | aadea6a59376 |
children | 6e304a7a60e7 |
comparison
equal
deleted
inserted
replaced
417:aadea6a59376 | 418:a269a019f5f8 |
---|---|
19 public void run() { | 19 public void run() { |
20 System.out.println("type = " + arg1.type); | 20 System.out.println("type = " + arg1.type); |
21 System.out.println("index = " + arg1.index); | 21 System.out.println("index = " + arg1.index); |
22 System.out.println("data = " + arg1.getVal()); | 22 System.out.println("data = " + arg1.getVal()); |
23 System.out.println(((Value)arg1.getVal()).getType()); | 23 System.out.println(((Value)arg1.getVal()).getType()); |
24 System.out.println(MetaCodeSegment.class.getName()); | 24 System.out.println(MetaCodeSegment.class); |
25 | 25 |
26 if (arg1.index == 10) { | 26 if (arg1.index == 10) { |
27 System.exit(0); | 27 System.exit(0); |
28 return; | 28 return; |
29 } | 29 } |
30 System.out.println(MetaCodeSegment.class); | |
31 | 30 |
32 // DataSegment.get("local").update | 31 // DataSegment.get("local").update |
33 ods.update("local", "key1", "String data"); | 32 ods.update("local", "key1", "String data"); |
34 //this.recycle(); | 33 //this.recycle(); |
35 } | 34 } |