1 16 package org.apache.axis2.om; 17 18 import javax.xml.namespace.QName ; 19 import java.util.Iterator ; 20 21 public interface OMContainer { 22 23 public void addChild (OMNode omNode); 24 25 public Iterator getChildrenWithName (QName elementQName) throws OMException; 26 27 public OMElement getFirstChildWithName (QName elementQName) throws OMException; 28 29 public Iterator getChildren(); 30 31 public void setFirstChild(OMNode omNode); 32 33 public OMNode getFirstChild(); 34 35 public boolean isComplete(); 36 37 public void setComplete(boolean state); 38 39 public void buildNext(); 40 } 41 | Popular Tags |