1 package freemarker.eclipse.outline; 2 3 import freemarker.core.LibraryLoad; 4 5 public class ImportNode { 6 7 Object parent = null; 8 String text = null; 9 10 public ImportNode(LibraryLoad lib, Object parent) { 11 this.parent = parent; 12 text = lib.getTemplateName(); 13 } 14 15 public Object getParent() { 16 return parent; 17 } 18 19 public String toString() { 20 return text; 21 } 22 } 23 | Popular Tags |