view paper/source/StartCodeSegment.java @ 4:e59c8e99a5c1

modify chapter4
author sugi
date Sun, 04 Jan 2015 04:43:51 +0900
parents
children cefaf86da446
line wrap: on
line source

public class StartCodeSegment extends CodeSegment {

    @Override
    public void run() {
        System.out.println("run StartCodeSegment");
	
        new TestCodeSegment();
        System.out.println("create TestCodeSegment");
	
        ods.update("local", "key1", "String data");
    }

}