package holeg.model; /** * The class "CpsNode" represents empty Objects in the system. They are just * nodes between Objects * * @author Gruppe14 * */ public class Node extends AbstractCanvasObject { /** * Create a new node in the system with an user-defined name. * * @param objName * String */ public Node(String objName) { super(objName); } public Node(Node node){ super(node); } public String toString(){ return "Node ID:" + getId(); } }