view src/main/java/christie/topology/manager/NodeInfo.java @ 98:c0ce4d151f93

update uncomment System.exit
author akahori
date Tue, 18 Sep 2018 09:22:48 +0900
parents f884c1bd0d36
children
line wrap: on
line source

package christie.topology.manager;

// edgeの情報入れてるだけだからクラス名変えたい.
public class NodeInfo {

    public String sourceNodeName;
    public String connectionName;
    public String targetNodeName;


    public NodeInfo(String source, String connection, String target) {
        this.sourceNodeName = source;
        this.connectionName = connection;
        this.targetNodeName = target;
    }

}