Mercurial > hg > Database > Alice
annotate src/alice/test/codesegment/api/FlipCodeSegment.java @ 199:15b68b65f8a4 working
Failed api flip
author | sugi |
---|---|
date | Thu, 21 Mar 2013 16:48:26 +0900 |
parents | f151dea22b2c |
children | 1fd7067f0044 |
rev | line source |
---|---|
198 | 1 package alice.test.codesegment.api; |
2 | |
3 import alice.codesegment.CodeSegment; | |
4 | |
5 public class FlipCodeSegment extends CodeSegment{ | |
6 | |
7 private String key; | |
8 public FlipCodeSegment(String _key){ | |
9 this.key = _key; | |
10 } | |
11 | |
12 @Override | |
13 public void run() { | |
14 Integer num = new Integer(0); | |
15 ods.put(key, num, false); | |
199 | 16 |
198 | 17 //System.out.println("Key is " +key); |
18 new FlipTest(key); | |
19 } | |
20 | |
21 } |