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