ElementNSImplpublic class ElementNSImpl extends ElementNSImpl Our own document implementation, which contains line/column information |
Fields Summary |
---|
protected int | lineNum | protected int | columnNum |
Constructors Summary |
---|
public ElementNSImpl()
super();
| protected ElementNSImpl(CoreDocumentImpl ownerDocument, String namespaceURI, String qualifiedName, String localpart, int lineNum, int columnNum)DOM2: Constructor for line/column information.
super(ownerDocument, namespaceURI, qualifiedName, localpart);
this.lineNum = lineNum;
this.columnNum = columnNum;
|
|