view paper/source/StartCodeSegment.java @ 5:b817e83013a7

add image file
author sugi
date Wed, 13 Feb 2013 18:24:42 +0900
parents
children
line wrap: on
line source

public class StartCodeSegment extends CodeSegment {

    @Override
	public void run() {
	System.out.println("run StartCodeSegment");
	
	TestCodeSegment cs = new TestCodeSegment();
	cs.input1.setKey("local", "key1");

	System.out.println("create TestCodeSegment");
	
	ods.update("local", "key1", "String data");
    }

}