Wednesday, 3 August 2011

Get the first direct child with a given type

  
import org.w3c.dom.Node;
/**
 *  
 *
 @author Costin Manolache
 */
public class Main {


  /** Get the first direct child with a given type
   */
  public static Node getChildNode parent, int type ) {
      Node n=parent.getFirstChild();
      whilen!=null && type != n.getNodeType() ) {
          n=n.getNextSibling();
      }
      ifn==null return null;
      return n;
  }
}

   
    
  

No comments:

Post a Comment