All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.petitparser.grammar.xml.ast.XmlDocument Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package org.petitparser.grammar.xml.ast;

import java.util.Collection;

/**
 * XML document node.
 */
public class XmlDocument extends XmlParent {

  public XmlDocument(Collection children) {
    super(children);
  }

  @Override
  public XmlDocument getDocument() {
    return this;
  }

  public XmlElement getRootElement() {
    for (XmlNode node : getChildren()) {
      if (node instanceof XmlElement) {
        return (XmlElement) node;
      }
    }
    return null;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy