1 23 24 package org.enhydra.xml.lazydom; 25 26 import org.w3c.dom.Node ; 27 28 33 public interface LazyParent extends LazyNode { 34 37 public boolean isParentExpanded(); 38 39 42 public void setParentExpanded(); 43 44 48 public void setParentWhileExpanding(Node parent); 50 51 54 public boolean areChildrenExpanded(); 55 56 59 public void setChildrenExpanded(); 60 61 65 public void appendChildWhileExpanding(Node child); 66 } 67 | Popular Tags |