import org.w3c.dom.Node;
public class Utils {
/**
* Get the first child of the specified type.
*
* @param parent
* @param type
* @return
*/
public static Node getChild(Node parent, int type) {
Node n = parent.getFirstChild();
while (n != null && type != n.getNodeType()) {
n = n.getNextSibling();
}
if (n == null) {
return null;
}
return n;
}
}
sources68 the directory containing the programming examples, source code and programming guide online
Wednesday, 3 August 2011
Get the first child of the specified type.
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment