|
|||||||||
| Home >> All >> org >> enhydra >> xml >> [ lazydom overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
org.enhydra.xml.lazydom
Class LazyElementNoNS

java.lang.Objectorg.apache.xerces.dom.NodeImpl
org.apache.xerces.dom.ChildNode
org.apache.xerces.dom.ParentNode
org.apache.xerces.dom.ElementImpl
org.enhydra.xml.lazydom.LazyElementNoNS
- All Implemented Interfaces:
- java.lang.Cloneable, org.w3c.dom.Element, org.w3c.dom.events.EventTarget, LazyElement, LazyNode, LazyParent, org.w3c.dom.Node, org.w3c.dom.NodeList, org.enhydra.xml.io.PreFormattedText, java.io.Serializable, org.apache.xerces.dom3.TypeInfo
- public class LazyElementNoNS
- extends org.apache.xerces.dom.ElementImpl
- implements LazyElement
- extends org.apache.xerces.dom.ElementImpl
Implementation of the DOM Element without namespaces that supports lazy instantiation of a template DOM. It is used by HTML, where non-standard element names containing `:' are occasionally invented. If this was derived from ElementNSImpl, it would do validation on the name and generate an error.
| Field Summary | |
private boolean |
fAttributesExpanded
Attributes expanded flag. |
private boolean |
fChildrenExpanded
|
private boolean |
fIsTemplateNode
Is this a template node? |
private int |
fNodeId
|
private boolean |
fParentExpanded
Parent and children expanded flags. |
private java.lang.String |
fPreFormattedText
Pre-formatted text associated with the node. |
private LazyElement |
fTemplateNode
Template for this element. |
| Fields inherited from class org.apache.xerces.dom.ElementImpl |
attributes, name |
| Fields inherited from class org.apache.xerces.dom.ParentNode |
firstChild, fNodeListCache, ownerDocument |
| Fields inherited from class org.apache.xerces.dom.ChildNode |
nextSibling, previousSibling |
| Fields inherited from interface org.w3c.dom.Node |
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE |
| Fields inherited from interface org.enhydra.xml.lazydom.LazyNode |
DOCUMENT_NODE_ID, NULL_NODE_ID |
| Fields inherited from interface org.apache.xerces.dom3.TypeInfo |
DERIVATION_EXTENSION, DERIVATION_LIST, DERIVATION_RESTRICTION, DERIVATION_UNION |
| Constructor Summary | |
protected |
LazyElementNoNS(LazyDocument ownerDoc,
LazyElement template,
java.lang.String qualifiedName)
Constructor. |
| Method Summary | |
org.w3c.dom.Node |
appendChild(org.w3c.dom.Node newChild)
Adds the node newChild to the end of the list of children
of this node. |
void |
appendChildWhileExpanding(org.w3c.dom.Node child)
Append a child during node expansion. |
boolean |
areAttributesExpanded()
Are the attributes of this node expanded? |
boolean |
areChildrenExpanded()
Are the children of this node expanded? |
org.w3c.dom.Node |
cloneNode(boolean deep)
Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes. |
private void |
doExpandAttributes(LazyDocument doc)
Do work of expanding attributes. |
private void |
expandAttributes()
Expand the attributes of this element, if they are not already expanded. |
private void |
expandChildren()
Expand the children of this element, if they are not already expanded. |
private void |
expandParent()
Expand the parent of this element, if it is not already expanded. |
java.lang.String |
getAttribute(java.lang.String name)
Retrieves an attribute value by name. |
org.w3c.dom.Attr |
getAttributeNode(java.lang.String name)
Retrieves an attribute node by name. |
org.w3c.dom.Attr |
getAttributeNodeNS(java.lang.String namespaceURI,
java.lang.String localName)
Retrieves an Attr node by local name and namespace URI. |
java.lang.String |
getAttributeNS(java.lang.String namespaceURI,
java.lang.String localName)
Retrieves an attribute value by local name and namespace URI. |
org.w3c.dom.NamedNodeMap |
getAttributes()
A NamedNodeMap containing the attributes of this node (if
it is an Element) or null otherwise. |
org.w3c.dom.NodeList |
getChildNodes()
A NodeList that contains all children of this node. |
org.w3c.dom.Node |
getFirstChild()
The first child of this node. |
org.w3c.dom.Node |
getLastChild()
The last child of this node. |
org.w3c.dom.Node |
getNextSibling()
The node immediately following this node. |
int |
getNodeId()
Get the node numeric id number. |
org.w3c.dom.Node |
getParentNode()
The parent of this node. |
java.lang.String |
getPreFormattedText()
Get the pre-formatted text for a node. |
org.w3c.dom.Node |
getPreviousSibling()
The node immediately preceding this node. |
LazyElement |
getTemplateElement()
Get the template for this node. |
LazyNode |
getTemplateNode()
Get the template node as a LazyNode. |
boolean |
hasChildNodes()
Returns whether this node has any children. |
org.w3c.dom.Node |
insertBefore(org.w3c.dom.Node newChild,
org.w3c.dom.Node refChild)
Inserts the node newChild before the existing child node
refChild. |
boolean |
isParentExpanded()
Is the parent of this node expanded? |
boolean |
isTemplateNode()
Check if this node is a template node. |
void |
makeTemplateNode(int nodeId)
|
void |
makeTemplateNode(int nodeId,
java.lang.String text)
Mark the node as a template node and associated preformatted text. |
void |
normalize()
Puts all Text nodes in the full depth of the sub-tree
underneath this Node, including attribute nodes, into a
"normal" form where only structure (e.g., elements, comments,
processing instructions, CDATA sections, and entity references)
separates Text nodes, i.e., there are neither adjacent
Text nodes nor empty Text nodes. |
void |
removeAttribute(java.lang.String name)
Removes an attribute by name. |
org.w3c.dom.Attr |
removeAttributeNode(org.w3c.dom.Attr oldAttr)
Removes the specified attribute node. |
void |
removeAttributeNS(java.lang.String namespaceURI,
java.lang.String localName)
Removes an attribute by local name and namespace URI. |
org.w3c.dom.Node |
removeChild(org.w3c.dom.Node oldChild)
Removes the child node indicated by oldChild from the list
of children, and returns it. |
org.w3c.dom.Node |
replaceChild(org.w3c.dom.Node newChild,
org.w3c.dom.Node oldChild)
Replaces the child node oldChild with newChild
in the list of children, and returns the oldChild node. |
void |
setAttribute(java.lang.String name,
java.lang.String value)
Adds a new attribute. |
org.w3c.dom.Attr |
setAttributeNode(org.w3c.dom.Attr newAttr)
Adds a new attribute node. |
org.w3c.dom.Attr |
setAttributeNodeNS(org.w3c.dom.Attr newAttr)
Adds a new attribute. |
void |
setAttributeNS(java.lang.String namespaceURI,
java.lang.String qualifiedName,
java.lang.String value)
Adds a new attribute. |
void |
setChildrenExpanded()
Flag the children as being expanded. |
void |
setNodeValue(java.lang.String value)
Set the node value, invalidating the id. |
void |
setParentExpanded()
Flag the parent as being expanded. |
void |
setParentWhileExpanding(org.w3c.dom.Node parent)
Set the parent of this node during expansion. |
void |
setPreFormattedText(java.lang.String text)
Set the pre-formatted text for a node. |
LazyNode |
templateClone(org.w3c.dom.Document ownerDocument)
Create a new node, using this node as the template. |
| Methods inherited from class org.apache.xerces.dom.ElementImpl |
getBaseURI, getDefaultAttributes, getElementsByTagName, getElementsByTagNameNS, getNodeName, getNodeType, getSchemaTypeInfo, getTagName, getTypeName, getTypeNamespace, getXercesAttribute, hasAttribute, hasAttributeNS, hasAttributes, isDerivedFrom, isEqualNode, reconcileDefaultAttributes, setIdAttribute, setIdAttributeNode, setIdAttributeNS, setReadOnly, setupDefaultAttributes, setXercesAttributeNode, synchronizeData |
| Methods inherited from class org.apache.xerces.dom.ParentNode |
getChildNodesUnoptimized, getLength, getOwnerDocument, getTextContent, item, setTextContent, synchronizeChildren |
| Methods inherited from class org.apache.xerces.dom.ChildNode |
|
| Methods inherited from class org.apache.xerces.dom.NodeImpl |
addEventListener, changed, changes, compareDocumentPosition, compareTreePosition, dispatchEvent, getContainer, getFeature, getLocalName, getNamespaceURI, getNodeNumber, getNodeValue, getPrefix, getReadOnly, getUserData, getUserData, isDefaultNamespace, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, needsSyncChildren, removeEventListener, setPrefix, setUserData, setUserData, toString |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface org.w3c.dom.Element |
getElementsByTagName, getElementsByTagNameNS, getTagName, hasAttribute, hasAttributeNS |
| Methods inherited from interface org.w3c.dom.Node |
getLocalName, getNamespaceURI, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getPrefix, hasAttributes, isSupported, setPrefix |
| Field Detail |
fTemplateNode
private LazyElement fTemplateNode
- Template for this element.
fNodeId
private int fNodeId
fIsTemplateNode
private boolean fIsTemplateNode
- Is this a template node?
fParentExpanded
private boolean fParentExpanded
- Parent and children expanded flags.
fChildrenExpanded
private boolean fChildrenExpanded
fAttributesExpanded
private boolean fAttributesExpanded
- Attributes expanded flag.
fPreFormattedText
private java.lang.String fPreFormattedText
- Pre-formatted text associated with the node.
| Constructor Detail |
LazyElementNoNS
protected LazyElementNoNS(LazyDocument ownerDoc, LazyElement template, java.lang.String qualifiedName)
- Constructor.
| Method Detail |
makeTemplateNode
public void makeTemplateNode(int nodeId,
java.lang.String text)
- Mark the node as a template node and associated preformatted text.
- Specified by:
makeTemplateNodein interfaceLazyElement
getTemplateElement
public LazyElement getTemplateElement()
- Get the template for this node.
- Specified by:
getTemplateElementin interfaceLazyElement
cloneNode
public org.w3c.dom.Node cloneNode(boolean deep)
- Description copied from interface:
org.w3c.dom.Node - Returns a duplicate of this node, i.e., serves as a generic copy
constructor for nodes. The duplicate node has no parent; (
parentNodeisnull.).
Cloning anElementcopies all attributes and their values, including those generated by the XML processor to represent defaulted attributes, but this method does not copy any text it contains unless it is a deep clone, since the text is contained in a childTextnode. Cloning anAttributedirectly, as opposed to be cloned as part of anElementcloning operation, returns a specified attribute (specifiedistrue). Cloning any other type of node simply returns a copy of this node.
Note that cloning an immutable subtree results in a mutable copy, but the children of anEntityReferenceclone are readonly . In addition, clones of unspecifiedAttrnodes are specified. And, cloningDocument,DocumentType,Entity, andNotationnodes is implementation dependent.- Specified by:
cloneNodein interfaceorg.w3c.dom.Node
makeTemplateNode
public void makeTemplateNode(int nodeId)
- Specified by:
makeTemplateNodein interfaceLazyNode
getNodeId
public int getNodeId()
- Description copied from interface:
LazyNode - Get the node numeric id number.
isTemplateNode
public boolean isTemplateNode()
- Description copied from interface:
LazyNode - Check if this node is a template node.
- Specified by:
isTemplateNodein interfaceLazyNode
getTemplateNode
public LazyNode getTemplateNode()
- Description copied from interface:
LazyNode - Get the template node as a LazyNode.
- Specified by:
getTemplateNodein interfaceLazyNode
templateClone
public LazyNode templateClone(org.w3c.dom.Document ownerDocument)
- Description copied from interface:
LazyNode - Create a new node, using this node as the template.
- Specified by:
templateClonein interfaceLazyNode
setNodeValue
public void setNodeValue(java.lang.String value)
- Set the node value, invalidating the id. All node data is modified
by this routine.
- Specified by:
setNodeValuein interfaceorg.w3c.dom.Node
isParentExpanded
public boolean isParentExpanded()
- Description copied from interface:
LazyParent - Is the parent of this node expanded?
- Specified by:
isParentExpandedin interfaceLazyParent
setParentExpanded
public void setParentExpanded()
- Description copied from interface:
LazyParent - Flag the parent as being expanded.
- Specified by:
setParentExpandedin interfaceLazyParent
setParentWhileExpanding
public void setParentWhileExpanding(org.w3c.dom.Node parent)
- Description copied from interface:
LazyParent - Set the parent of this node during expansion. This should also
flag the parent as being expanded.
- Specified by:
setParentWhileExpandingin interfaceLazyParent
areChildrenExpanded
public boolean areChildrenExpanded()
- Description copied from interface:
LazyParent - Are the children of this node expanded?
- Specified by:
areChildrenExpandedin interfaceLazyParent
setChildrenExpanded
public void setChildrenExpanded()
- Description copied from interface:
LazyParent - Flag the children as being expanded.
- Specified by:
setChildrenExpandedin interfaceLazyParent
appendChildWhileExpanding
public void appendChildWhileExpanding(org.w3c.dom.Node child)
- Description copied from interface:
LazyParent - Append a child during node expansion. This should only add the
child, not trigger any other expansion.
- Specified by:
appendChildWhileExpandingin interfaceLazyParent
expandParent
private void expandParent()
- Expand the parent of this element, if it is not already expanded.
expandChildren
private void expandChildren()
- Expand the children of this element, if they are not already expanded.
getParentNode
public org.w3c.dom.Node getParentNode()
- Description copied from interface:
org.w3c.dom.Node - The parent of this node. All nodes, except
Attr,Document,DocumentFragment,Entity, andNotationmay have a parent. However, if a node has just been created and not yet added to the tree, or if it has been removed from the tree, this isnull.- Specified by:
getParentNodein interfaceorg.w3c.dom.Node
getChildNodes
public org.w3c.dom.NodeList getChildNodes()
- Description copied from interface:
org.w3c.dom.Node - A
NodeListthat contains all children of this node. If there are no children, this is aNodeListcontaining no nodes.- Specified by:
getChildNodesin interfaceorg.w3c.dom.Node
getFirstChild
public org.w3c.dom.Node getFirstChild()
- Description copied from interface:
org.w3c.dom.Node - The first child of this node. If there is no such node, this returns
null.- Specified by:
getFirstChildin interfaceorg.w3c.dom.Node
getLastChild
public org.w3c.dom.Node getLastChild()
- Description copied from interface:
org.w3c.dom.Node - The last child of this node. If there is no such node, this returns
null.- Specified by:
getLastChildin interfaceorg.w3c.dom.Node
getPreviousSibling
public org.w3c.dom.Node getPreviousSibling()
- Description copied from interface:
org.w3c.dom.Node - The node immediately preceding this node. If there is no such node,
this returns
null.- Specified by:
getPreviousSiblingin interfaceorg.w3c.dom.Node
getNextSibling
public org.w3c.dom.Node getNextSibling()
- Description copied from interface:
org.w3c.dom.Node - The node immediately following this node. If there is no such node,
this returns
null.- Specified by:
getNextSiblingin interfaceorg.w3c.dom.Node
insertBefore
public org.w3c.dom.Node insertBefore(org.w3c.dom.Node newChild, org.w3c.dom.Node refChild) throws org.w3c.dom.DOMException
- Description copied from interface:
org.w3c.dom.Node - Inserts the node
newChildbefore the existing child noderefChild. IfrefChildisnull, insertnewChildat the end of the list of children.
IfnewChildis aDocumentFragmentobject, all of its children are inserted, in the same order, beforerefChild. If thenewChildis already in the tree, it is first removed.- Specified by:
insertBeforein interfaceorg.w3c.dom.Node
replaceChild
public org.w3c.dom.Node replaceChild(org.w3c.dom.Node newChild, org.w3c.dom.Node oldChild) throws org.w3c.dom.DOMException
- Description copied from interface:
org.w3c.dom.Node - Replaces the child node
oldChildwithnewChildin the list of children, and returns theoldChildnode.
IfnewChildis aDocumentFragmentobject,oldChildis replaced by all of theDocumentFragmentchildren, which are inserted in the same order. If thenewChildis already in the tree, it is first removed.- Specified by:
replaceChildin interfaceorg.w3c.dom.Node
removeChild
public org.w3c.dom.Node removeChild(org.w3c.dom.Node oldChild) throws org.w3c.dom.DOMException
- Description copied from interface:
org.w3c.dom.Node - Removes the child node indicated by
oldChildfrom the list of children, and returns it.- Specified by:
removeChildin interfaceorg.w3c.dom.Node
appendChild
public org.w3c.dom.Node appendChild(org.w3c.dom.Node newChild) throws org.w3c.dom.DOMException
- Description copied from interface:
org.w3c.dom.Node - Adds the node
newChildto the end of the list of children of this node. If thenewChildis already in the tree, it is first removed.- Specified by:
appendChildin interfaceorg.w3c.dom.Node
hasChildNodes
public boolean hasChildNodes()
- Description copied from interface:
org.w3c.dom.Node - Returns whether this node has any children.
- Specified by:
hasChildNodesin interfaceorg.w3c.dom.Node
normalize
public void normalize()
- Description copied from interface:
org.w3c.dom.Node - Puts all
Textnodes in the full depth of the sub-tree underneath thisNode, including attribute nodes, into a "normal" form where only structure (e.g., elements, comments, processing instructions, CDATA sections, and entity references) separatesTextnodes, i.e., there are neither adjacentTextnodes nor emptyTextnodes. This can be used to ensure that the DOM view of a document is the same as if it were saved and re-loaded, and is useful when operations (such as XPointer lookups) that depend on a particular document tree structure are to be used.In cases where the document containsCDATASections, the normalize operation alone may not be sufficient, since XPointers do not differentiate betweenTextnodes andCDATASectionnodes.- Specified by:
normalizein interfaceorg.w3c.dom.Node
areAttributesExpanded
public boolean areAttributesExpanded()
- Are the attributes of this node expanded?
- Specified by:
areAttributesExpandedin interfaceLazyElement
doExpandAttributes
private void doExpandAttributes(LazyDocument doc)
- Do work of expanding attributes. Must be called while
synchronized on the owner document.
expandAttributes
private void expandAttributes()
- Expand the attributes of this element, if they are not already
expanded.
getAttributes
public org.w3c.dom.NamedNodeMap getAttributes()
- Description copied from interface:
org.w3c.dom.Node - A
NamedNodeMapcontaining the attributes of this node (if it is anElement) ornullotherwise.- Specified by:
getAttributesin interfaceorg.w3c.dom.Node
getAttribute
public java.lang.String getAttribute(java.lang.String name)
- Description copied from interface:
org.w3c.dom.Element - Retrieves an attribute value by name.
- Specified by:
getAttributein interfaceorg.w3c.dom.Element
setAttribute
public void setAttribute(java.lang.String name, java.lang.String value) throws org.w3c.dom.DOMException
- Description copied from interface:
org.w3c.dom.Element - Adds a new attribute. If an attribute with that name is already present
in the element, its value is changed to be that of the value
parameter. This value is a simple string; it is not parsed as it is
being set. So any markup (such as syntax to be recognized as an
entity reference) is treated as literal text, and needs to be
appropriately escaped by the implementation when it is written out.
In order to assign an attribute value that contains entity
references, the user must create an
Attrnode plus anyTextandEntityReferencenodes, build the appropriate subtree, and usesetAttributeNodeto assign it as the value of an attribute.
To set an attribute with a qualified name and namespace URI, use thesetAttributeNSmethod.- Specified by:
setAttributein interfaceorg.w3c.dom.Element
removeAttribute
public void removeAttribute(java.lang.String name) throws org.w3c.dom.DOMException
- Description copied from interface:
org.w3c.dom.Element - Removes an attribute by name. If the removed attribute is known to have
a default value, an attribute immediately appears containing the
default value as well as the corresponding namespace URI, local name,
and prefix when applicable.
To remove an attribute by local name and namespace URI, use theremoveAttributeNSmethod.- Specified by:
removeAttributein interfaceorg.w3c.dom.Element
getAttributeNode
public org.w3c.dom.Attr getAttributeNode(java.lang.String name)
- Description copied from interface:
org.w3c.dom.Element - Retrieves an attribute node by name.
To retrieve an attribute node by qualified name and namespace URI, use thegetAttributeNodeNSmethod.- Specified by:
getAttributeNodein interfaceorg.w3c.dom.Element
setAttributeNode
public org.w3c.dom.Attr setAttributeNode(org.w3c.dom.Attr newAttr) throws org.w3c.dom.DOMException
- Description copied from interface:
org.w3c.dom.Element - Adds a new attribute node. If an attribute with that name (
nodeName) is already present in the element, it is replaced by the new one.
To add a new attribute node with a qualified name and namespace URI, use thesetAttributeNodeNSmethod.- Specified by:
setAttributeNodein interfaceorg.w3c.dom.Element
removeAttributeNode
public org.w3c.dom.Attr removeAttributeNode(org.w3c.dom.Attr oldAttr) throws org.w3c.dom.DOMException
- Description copied from interface:
org.w3c.dom.Element - Removes the specified attribute node. If the removed
Attrhas a default value it is immediately replaced. The replacing attribute has the same namespace URI and local name, as well as the original prefix, when applicable.- Specified by:
removeAttributeNodein interfaceorg.w3c.dom.Element
getAttributeNS
public java.lang.String getAttributeNS(java.lang.String namespaceURI, java.lang.String localName)
- Description copied from interface:
org.w3c.dom.Element - Retrieves an attribute value by local name and namespace URI. HTML-only
DOM implementations do not need to implement this method.
- Specified by:
getAttributeNSin interfaceorg.w3c.dom.Element
setAttributeNS
public void setAttributeNS(java.lang.String namespaceURI, java.lang.String qualifiedName, java.lang.String value) throws org.w3c.dom.DOMException
- Description copied from interface:
org.w3c.dom.Element - Adds a new attribute. If an attribute with the same local name and
namespace URI is already present on the element, its prefix is
changed to be the prefix part of the
qualifiedName, and its value is changed to be thevalueparameter. This value is a simple string; it is not parsed as it is being set. So any markup (such as syntax to be recognized as an entity reference) is treated as literal text, and needs to be appropriately escaped by the implementation when it is written out. In order to assign an attribute value that contains entity references, the user must create anAttrnode plus anyTextandEntityReferencenodes, build the appropriate subtree, and usesetAttributeNodeNSorsetAttributeNodeto assign it as the value of an attribute.
HTML-only DOM implementations do not need to implement this method.- Specified by:
setAttributeNSin interfaceorg.w3c.dom.Element
removeAttributeNS
public void removeAttributeNS(java.lang.String namespaceURI, java.lang.String localName) throws org.w3c.dom.DOMException
- Description copied from interface:
org.w3c.dom.Element - Removes an attribute by local name and namespace URI. If the removed
attribute has a default value it is immediately replaced. The
replacing attribute has the same namespace URI and local name, as
well as the original prefix.
HTML-only DOM implementations do not need to implement this method.- Specified by:
removeAttributeNSin interfaceorg.w3c.dom.Element
getAttributeNodeNS
public org.w3c.dom.Attr getAttributeNodeNS(java.lang.String namespaceURI, java.lang.String localName)
- Description copied from interface:
org.w3c.dom.Element - Retrieves an
Attrnode by local name and namespace URI. HTML-only DOM implementations do not need to implement this method.- Specified by:
getAttributeNodeNSin interfaceorg.w3c.dom.Element
setAttributeNodeNS
public org.w3c.dom.Attr setAttributeNodeNS(org.w3c.dom.Attr newAttr) throws org.w3c.dom.DOMException
- Description copied from interface:
org.w3c.dom.Element - Adds a new attribute. If an attribute with that local name and that
namespace URI is already present in the element, it is replaced by
the new one.
HTML-only DOM implementations do not need to implement this method.- Specified by:
setAttributeNodeNSin interfaceorg.w3c.dom.Element
getPreFormattedText
public java.lang.String getPreFormattedText()
- Description copied from interface:
org.enhydra.xml.io.PreFormattedText - Get the pre-formatted text for a node.
- Specified by:
getPreFormattedTextin interfaceorg.enhydra.xml.io.PreFormattedText
setPreFormattedText
public void setPreFormattedText(java.lang.String text)
- Description copied from interface:
org.enhydra.xml.io.PreFormattedText - Set the pre-formatted text for a node.
- Specified by:
setPreFormattedTextin interfaceorg.enhydra.xml.io.PreFormattedText
|
|||||||||
| Home >> All >> org >> enhydra >> xml >> [ lazydom overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC