DeferredCommentImpl(DeferredDocumentImpl ownerDocument, int nodeIndex)This is the deferred constructor. Only the fNodeIndex is given here. All other data,
can be requested from the ownerDocument via the index.
//
// Constructors
//
super(ownerDocument, null);
fNodeIndex = nodeIndex;
needsSyncData(true);
|