01: package org.uispec4j.xml; 02: 03: import org.xml.sax.Attributes; 04: 05: public interface Node { 06: 07: public Node getSubNode(String childName, Attributes xmlAttrs); 08: 09: public void setValue(String value); 10: 11: public void complete(); 12: }