The ElementImpl class contains the following constructors:
ElementImpl() is the default constructor.
ElementImpl(Name tag, int type) creates an instance of ElementImpl given the element tag name and the element type.
The default constructor.
public ElementImpl();
Creates an instance of ElementImpl given the element tag name and the element type.
public ElementImpl(Name tag, int type);
tag | The element tag name. |
type | The element type. |