SilentNode.java :  » Testing » UISpec4J » org » uispec4j » xml » Java Open Source

Java Open Source » Testing » UISpec4J 
UISpec4J » org » uispec4j » xml » SilentNode.java
package org.uispec4j.xml;

import org.xml.sax.Attributes;

public class SilentNode implements Node {
  public static final SilentNode INSTANCE = new SilentNode();

  private SilentNode() {
  }

  public Node getSubNode(String childName, Attributes xmlAttrs) throws RuntimeException {
    return this;
  }

  public void setValue(String value) {
  }

  public void complete() {
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.