You are viewing a plain text version of this content. The canonical link for it is here.
Posted to j-users@xerces.apache.org by Elena Litani <hl...@jtcsv.com> on 2001/02/09 15:17:09 UTC

DOM Level 3 Core (Xerces-J)

Hi,
Last week I've implemented some DOM Level 3 features
(http://www.w3.org/TR/DOM-Level-3-Core/). 

NOTE: This implementation is experimental. DOM Level 3 is in working
draft stage - it is still possible that changes in the specification
occur.

Added features are:
  
EntityImpl
  
*encoding of type DOMString
An attribute specifying, as part of the text declaration, the encoding
of this entity, when it is an external parsed entity. This is null
otherwise.
  
*version of type DOMString
An attribute specifying, as part of the text declaration, the version
number of this entity, when it is an external parsed entity. This is
null otherwise.
  
  - getEncoding(), getVersion(), setEncoding(), setVersion()
  
DocumentImpl:
  
*encoding of type DOMString
An attribute specifying, as part of the XML declaration, the encoding of
this document. This is null when unspecified.
  
*standalone of type boolean
An attribute specifying, as part of the XML declaration, whether this
document is standalone.
  
*version of type DOMString
An attribute specifying, as part of the XML declaration, the version
number of this document. This is null when unspecified.
  
  - getEncoding(), getVersion(), setEncoding(), setVersion(),
getStandalone(), setStandalone()


Have fun :),
Elena.