updating SQL plugin with latest Quantum code
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.sql / src / net / sourceforge / phpdt / sql / view / bookmark / TreeNode.java
index f9d6a00..b920d2f 100644 (file)
@@ -1,15 +1,15 @@
 package net.sourceforge.phpdt.sql.view.bookmark;
 
+import net.sourceforge.phpdt.sql.sql.metadata.ObjectMetaData;
 /**
  * @author root
- *
- * To change this generated comment edit the template variable "typecomment":
- * Window>Preferences>Java>Templates.
- * To enable and disable the creation of type comments go to
- * Window>Preferences>Java>Code Generation.
+ * Interface for all nodes of the internal tree of data
  */
 public interface TreeNode {
        public Object[] getChildren();
        public Object getParent();
        public boolean hasChildren();
+       public String getName();
+       public ObjectMetaData getMetaData();
+
 }