package com.treelight.krnl; /** * A link to an internal node. * * @version 0.1 * @author Eric Armstrong * @see ../NodesAndLists.html */ public class NodeLink extends AbstractLink implements Categorizable { private String entityType = NODE_LINK; private String targettype = NODE; private StructureNode target; private String ViewControl; public String getLinkText() { //___TBD: How do we want to represent a link to an internal node? } /** * Create a new node, specifying the URL as a string. */ public NodeLink(StructureNode target, ViewControl viewControl) { this.target = target; this.viewControl = viewControl; } }//NodeLink