1 package com.frovi.ss.Tree; 2 3 import java.util.Collection ; 4 5 import org.infoglue.cms.exception.SystemException; 6 7 13 public interface INodeSupplier 14 { 15 18 public boolean hasChildren(Integer nodeId) throws SystemException, Exception ; 19 20 23 public boolean hasChildren(); 24 25 32 public Collection getChildContainerNodes(Integer parentNode) throws SystemException, Exception ; 33 34 41 public Collection getChildLeafNodes(Integer parentNode); 42 43 public BaseNode getRootNode(); 47 48 } 49 | Popular Tags |