This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nms-nmsweb/src/com/ncs/topology/NodeTree.java
2018-09-27 16:21:05 +08:00

29 lines
412 B
Java

package com.ncs.topology;
import java.util.ArrayList;
import java.util.List;
public class NodeTree {
String name;
List<Node> nodeList=new ArrayList<Node>();
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public List<Node> getNodeList() {
return nodeList;
}
public void setNodeList(List<Node> nodeList) {
this.nodeList = nodeList;
}
}