public class Element extends Object implements Serializable
Element node in a DOM tree.
public Element(String name)
public String getElementName()
public void setElementName(String name)
public boolean elementNameMatches(String name)
public int numAttributes()
public boolean hasAttributes()
public boolean hasAttribute(String attributeName)
public void removeAttribute(String attributeName)
public void clearAttributes()
public Element cloneNode(INestableNode parent)
public boolean hasChildren()
hasChildren
in interface INestableNode
public int numChildren()
numChildren
in interface INestableNode
public List<INode> getChildren()
getChildren
in interface INestableNode
public <T extends INode> List<T> getChildrenOfType(Class<T> type)
getChildrenOfType
in interface INestableNode
public INode getFirstChild()
getFirstChild
in interface INestableNode
public <T extends INode> T getFirstChildOfType(Class<T> type)
getFirstChildOfType
in interface INestableNode
public void addChild(INode newChild)
addChild
in interface INestableNode
public final void insertChild(int index, INode newChild)
insertChild
in interface INestableNode
public final void insertChildBefore(INode before, INode newChild)
insertChildBefore
in interface INestableNode
public final void insertChildAfter(INode after, INode newChild)
insertChildAfter
in interface INestableNode
public final void removeChild(INode child)
removeChild
in interface INestableNode
public final void clearChildren()
clearChildren
in interface INestableNode
public INestableNode getParent()
public void setParent(INestableNode parent)
Copyright © 2023 The ATTOPARSER team. All rights reserved.