view src/main/java/alice/test/codesegment/remote/RemoteStartCodeSegment.java @ 527:bfec2c3ff1b8 dispose

change unzip
author Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
date Thu, 30 Apr 2015 18:14:02 +0900
parents 928907206d21
children b3c9554ccb1b
line wrap: on
line source

package alice.test.codesegment.remote;

import alice.codesegment.CodeSegment;

public class RemoteStartCodeSegment extends CodeSegment {

    @Override
    public void run() {
        RemoteIncrement cs = new RemoteIncrement();
        cs.num.setKey("remote", "num");

        ods.put("local", "num", 0, true);
    }
}