1 15 package org.apache.tapestry.contrib.tree.model; 16 17 import java.io.Serializable ; 18 import java.util.Collection ; 19 20 23 24 public interface ITreeNode extends Serializable  25 { 26 27 30 Collection getChildren(); 31 32 36 int getChildCount(); 37 38 41 ITreeNode getParent(); 42 43 46 boolean containsChild(ITreeNode node); 47 48 51 boolean getAllowsChildren(); 52 53 56 boolean isLeaf(); 57 58 } 59 | Popular Tags |