view 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
line wrap: on
line source

package alice.test.codesegment.api;

import alice.codesegment.CodeSegment;

public class FlipCodeSegment extends CodeSegment{
	
	private String key;
	public FlipCodeSegment(String _key){
		this.key = _key;
	}
	
	@Override
	public void run() {
		Integer num = new Integer(0);
		ods.put(key, num, false);
		
		//System.out.println("Key is " +key);
		new FlipTest(key);
	}
	
}