01: package org.uispec4j.xml;
02:
03: import org.xml.sax.Attributes;
04:
05: public class SilentNode implements Node {
06: public static final SilentNode INSTANCE = new SilentNode();
07:
08: private SilentNode() {
09: }
10:
11: public Node getSubNode(String childName, Attributes xmlAttrs)
12: throws RuntimeException {
13: return this ;
14: }
15:
16: public void setValue(String value) {
17: }
18:
19: public void complete() {
20: }
21: }
|