SQL Plugin copied from Quantum plugin and refactored for PHPEclipse
[phpeclipse.git] / archive / net.sourceforge.phpeclipse.sql / src / net / sourceforge / phpdt / sql / view / bookmark / TreeNode.java
1 package net.sourceforge.phpdt.sql.view.bookmark;
2
3 /**
4  * @author root
5  *
6  * To change this generated comment edit the template variable "typecomment":
7  * Window>Preferences>Java>Templates.
8  * To enable and disable the creation of type comments go to
9  * Window>Preferences>Java>Code Generation.
10  */
11 public interface TreeNode {
12         public Object[] getChildren();
13         public Object getParent();
14         public boolean hasChildren();
15 }