Uses of Class
org.w3c.dom.DOMException

Packages that use DOMException
org.apache.xalan.templates Implements the Templates interface, and defines a set of classes that represent an XSLT stylesheet. 
org.apache.xml.dtm   
org.apache.xml.dtm.ref   
org.apache.xml.dtm.ref.dom2dtm   
org.apache.xml.serializer.dom3   
org.apache.xml.utils Implementation of Xalan utility classes. 
org.apache.xpath Implementation of XPath; for the most part, only classes meant for public use are found at this root level of the XPath packages. 
org.apache.xpath.domapi Implements DOM Level 3 XPath API 
org.w3c.dom   
org.w3c.dom.css   
org.w3c.dom.events   
org.w3c.dom.ls   
org.w3c.dom.ranges   
org.w3c.dom.stylesheets   
org.w3c.dom.traversal   
org.w3c.dom.xpath   
 

Uses of DOMException in org.apache.xalan.templates
 

Methods in org.apache.xalan.templates that throw DOMException
 Node ElemTemplateElement.appendChild(Node newChild)
          Add a child to the child list.
 Node ElemTemplateElement.replaceChild(Node newChild, Node oldChild)
          Replace the old child with a new child.
 Node ElemTemplateElement.insertBefore(Node newChild, Node refChild)
          Unimplemented.
 Node ElemLiteralResult.LiteralElementAttributes.removeNamedItem(java.lang.String name)
           
 Node ElemLiteralResult.LiteralElementAttributes.removeNamedItemNS(java.lang.String namespaceURI, java.lang.String localName)
           
 Node ElemLiteralResult.LiteralElementAttributes.setNamedItem(Node arg)
          Unimplemented.
 Node ElemLiteralResult.LiteralElementAttributes.setNamedItemNS(Node arg)
          Unimplemented.
 Node ElemLiteralResult.Attribute.appendChild(Node newChild)
           
 java.lang.String ElemLiteralResult.Attribute.getNodeValue()
           
 Node ElemLiteralResult.Attribute.insertBefore(Node newChild, Node refChild)
           
 Node ElemLiteralResult.Attribute.removeChild(Node oldChild)
           
 Node ElemLiteralResult.Attribute.replaceChild(Node newChild, Node oldChild)
           
 void ElemLiteralResult.Attribute.setNodeValue(java.lang.String nodeValue)
           
 void ElemLiteralResult.Attribute.setPrefix(java.lang.String prefix)
           
 void ElemLiteralResult.Attribute.setValue(java.lang.String value)
           
 void ElemLiteralResult.Attribute.setTextContent(java.lang.String textContent)
           
 java.lang.String ElemLiteralResult.Attribute.getTextContent()
           
 short ElemLiteralResult.Attribute.compareDocumentPosition(Node other)
           
 Node ElemSort.appendChild(Node newChild)
          Add a child to the child list.
 

Uses of DOMException in org.apache.xml.dtm
 

Subclasses of DOMException in org.apache.xml.dtm
 interface DTMDOMException
          Simple implementation of DOMException.
 

Uses of DOMException in org.apache.xml.dtm.ref
 

Subclasses of DOMException in org.apache.xml.dtm.ref
 interface DTMNamedNodeMap.DTMException
          Simple implementation of DOMException.
 

Methods in org.apache.xml.dtm.ref that throw DOMException
 void DTMNodeProxy.setPrefix(java.lang.String prefix)
           
 java.lang.String DTMNodeProxy.getNodeValue()
           
 java.lang.String DTMNodeProxy.getStringValue()
           
 void DTMNodeProxy.setNodeValue(java.lang.String nodeValue)
           
 Node DTMNodeProxy.insertBefore(Node newChild, Node refChild)
           
 Node DTMNodeProxy.replaceChild(Node newChild, Node oldChild)
           
 Node DTMNodeProxy.removeChild(Node oldChild)
           
 Node DTMNodeProxy.appendChild(Node newChild)
           
 Element DTMNodeProxy.createElement(java.lang.String tagName)
           
 CDATASection DTMNodeProxy.createCDATASection(java.lang.String data)
           
 ProcessingInstruction DTMNodeProxy.createProcessingInstruction(java.lang.String target, java.lang.String data)
           
 Attr DTMNodeProxy.createAttribute(java.lang.String name)
           
 EntityReference DTMNodeProxy.createEntityReference(java.lang.String name)
           
 Node DTMNodeProxy.importNode(Node importedNode, boolean deep)
           
 Element DTMNodeProxy.createElementNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
           
 Attr DTMNodeProxy.createAttributeNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
           
 Text DTMNodeProxy.splitText(int offset)
           
 java.lang.String DTMNodeProxy.getData()
           
 void DTMNodeProxy.setData(java.lang.String data)
           
 java.lang.String DTMNodeProxy.substringData(int offset, int count)
           
 void DTMNodeProxy.appendData(java.lang.String arg)
           
 void DTMNodeProxy.insertData(int offset, java.lang.String arg)
           
 void DTMNodeProxy.deleteData(int offset, int count)
           
 void DTMNodeProxy.replaceData(int offset, int count, java.lang.String arg)
           
 void DTMNodeProxy.setAttribute(java.lang.String name, java.lang.String value)
           
 void DTMNodeProxy.removeAttribute(java.lang.String name)
           
 Attr DTMNodeProxy.setAttributeNode(Attr newAttr)
           
 Attr DTMNodeProxy.removeAttributeNode(Attr oldAttr)
           
 void DTMNodeProxy.setAttributeNS(java.lang.String namespaceURI, java.lang.String qualifiedName, java.lang.String value)
           
 void DTMNodeProxy.removeAttributeNS(java.lang.String namespaceURI, java.lang.String localName)
           
 Attr DTMNodeProxy.setAttributeNodeNS(Attr newAttr)
           
 Node DTMNodeProxy.adoptNode(Node source)
          NEEDSDOC Method adoptNode NEEDSDOC @param source
 void DTMNodeProxy.setTextContent(java.lang.String textContent)
          This attribute returns the text content of this node and its descendants.
 java.lang.String DTMNodeProxy.getTextContent()
          This attribute returns the text content of this node and its descendants.
 short DTMNodeProxy.compareDocumentPosition(Node other)
          Compares a node with this node with regard to their position in the document.
 Node DTMNodeProxy.renameNode(Node n, java.lang.String namespaceURI, java.lang.String name)
          DOM Level 3 Renaming node
 Text DTMNodeProxy.replaceWholeText(java.lang.String content)
          DOM Level 3
 void DTMNodeProxy.setXmlStandalone(boolean xmlStandalone)
           
 void DTMNodeProxy.setXmlVersion(java.lang.String xmlVersion)
           
 Node DTMNamedNodeMap.setNamedItemNS(Node arg)
          Adds a node using its namespaceURI and localName.
 Node DTMNamedNodeMap.removeNamedItemNS(java.lang.String namespaceURI, java.lang.String localName)
          Removes a node specified by local name and namespace URI.
 Node DTMNodeIterator.nextNode()
           
 

Uses of DOMException in org.apache.xml.dtm.ref.dom2dtm
 

Methods in org.apache.xml.dtm.ref.dom2dtm that throw DOMException
 void DOM2DTMdefaultNamespaceDeclarationNode.setTextContent(java.lang.String textContent)
          This attribute returns the text content of this node and its descendants.
 java.lang.String DOM2DTMdefaultNamespaceDeclarationNode.getTextContent()
          This attribute returns the text content of this node and its descendants.
 short DOM2DTMdefaultNamespaceDeclarationNode.compareDocumentPosition(Node other)
          Compares a node with this node with regard to their position in the document.
 

Uses of DOMException in org.apache.xml.serializer.dom3
 

Methods in org.apache.xml.serializer.dom3 that throw DOMException
 java.lang.Object LSSerializerImpl.getParameter(java.lang.String name)
          This method returns the value of a parameter if known.
 void LSSerializerImpl.setParameter(java.lang.String name, java.lang.Object value)
          This method sets the value of the named parameter.
 java.lang.String LSSerializerImpl.writeToString(Node nodeArg)
          Serializes the specified node and returns a String with the serialized data to the caller.
 

Uses of DOMException in org.apache.xml.utils
 

Methods in org.apache.xml.utils that throw DOMException
 Node UnImplNode.appendChild(Node newChild)
          Unimplemented.
 Attr UnImplNode.removeAttributeNode(Attr oldAttr)
          Unimplemented.
 Attr UnImplNode.setAttributeNode(Attr newAttr)
          Unimplemented.
 void UnImplNode.removeAttribute(java.lang.String name)
          Unimplemented.
 void UnImplNode.setAttribute(java.lang.String name, java.lang.String value)
          Unimplemented.
 Attr UnImplNode.setAttributeNodeNS(Attr newAttr)
          Unimplemented.
 void UnImplNode.removeAttributeNS(java.lang.String namespaceURI, java.lang.String localName)
          Unimplemented.
 void UnImplNode.setAttributeNS(java.lang.String namespaceURI, java.lang.String qualifiedName, java.lang.String value)
          Unimplemented.
 java.lang.String UnImplNode.getNodeValue()
          Unimplemented.
 void UnImplNode.setNodeValue(java.lang.String nodeValue)
          Unimplemented.
 void UnImplNode.setValue(java.lang.String value)
          Unimplemented.
 Node UnImplNode.insertBefore(Node newChild, Node refChild)
          Unimplemented.
 Node UnImplNode.replaceChild(Node newChild, Node oldChild)
          Unimplemented.
 Node UnImplNode.removeChild(Node oldChild)
          Unimplemented.
 void UnImplNode.setPrefix(java.lang.String prefix)
          Unimplemented.
 Element UnImplNode.createElement(java.lang.String tagName)
          Unimplemented.
 CDATASection UnImplNode.createCDATASection(java.lang.String data)
          Unimplemented.
 ProcessingInstruction UnImplNode.createProcessingInstruction(java.lang.String target, java.lang.String data)
          Unimplemented.
 Attr UnImplNode.createAttribute(java.lang.String name)
          Unimplemented.
 EntityReference UnImplNode.createEntityReference(java.lang.String name)
          Unimplemented.
 Node UnImplNode.importNode(Node importedNode, boolean deep)
          Unimplemented.
 Element UnImplNode.createElementNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
          Unimplemented.
 Attr UnImplNode.createAttributeNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
          Unimplemented.
 void UnImplNode.setData(java.lang.String data)
          Set Node data
 java.lang.String UnImplNode.substringData(int offset, int count)
          Unimplemented.
 void UnImplNode.appendData(java.lang.String arg)
          Unimplemented.
 void UnImplNode.insertData(int offset, java.lang.String arg)
          Unimplemented.
 void UnImplNode.deleteData(int offset, int count)
          Unimplemented.
 void UnImplNode.replaceData(int offset, int count, java.lang.String arg)
          Unimplemented.
 Text UnImplNode.splitText(int offset)
          Unimplemented.
 Node UnImplNode.adoptNode(Node source)
          NEEDSDOC Method adoptNode NEEDSDOC @param source NEEDSDOC (adoptNode) @return
 void UnImplNode.setTextContent(java.lang.String textContent)
          This attribute returns the text content of this node and its descendants.
 java.lang.String UnImplNode.getTextContent()
          This attribute returns the text content of this node and its descendants.
 short UnImplNode.compareDocumentPosition(Node other)
          Compares a node with this node with regard to their position in the document.
 Node UnImplNode.renameNode(Node n, java.lang.String namespaceURI, java.lang.String name)
          DOM Level 3 Renaming node
 Text UnImplNode.replaceWholeText(java.lang.String content)
          DOM Level 3
 void UnImplNode.setXmlStandalone(boolean xmlStandalone)
           
 void UnImplNode.setXmlVersion(java.lang.String xmlVersion)
           
 

Uses of DOMException in org.apache.xpath
 

Methods in org.apache.xpath that throw DOMException
 Node NodeSet.nextNode()
          Returns the next node in the set and advances the position of the iterator in the set.
 Node NodeSet.previousNode()
          Returns the previous node in the set and moves the position of the iterator backwards in the set.
 

Uses of DOMException in org.apache.xpath.domapi
 

Methods in org.apache.xpath.domapi that throw DOMException
 XPathExpression XPathEvaluatorImpl.createExpression(java.lang.String expression, XPathNSResolver resolver)
          Creates a parsed XPath expression with resolved namespaces.
 java.lang.Object XPathEvaluatorImpl.evaluate(java.lang.String expression, Node contextNode, XPathNSResolver resolver, short type, java.lang.Object result)
          Evaluates an XPath expression string and returns a result of the specified type if possible.
 

Uses of DOMException in org.w3c.dom
 

Methods in org.w3c.dom that throw DOMException
 void Element.setAttribute(java.lang.String name, java.lang.String value)
          Adds a new attribute.
 void Element.removeAttribute(java.lang.String name)
          Removes an attribute by name.
 Attr Element.setAttributeNode(Attr newAttr)
          Adds a new attribute node.
 Attr Element.removeAttributeNode(Attr oldAttr)
          Removes the specified attribute node.
 java.lang.String Element.getAttributeNS(java.lang.String namespaceURI, java.lang.String localName)
          Retrieves an attribute value by local name and namespace URI.
 void Element.setAttributeNS(java.lang.String namespaceURI, java.lang.String qualifiedName, java.lang.String value)
          Adds a new attribute.
 void Element.removeAttributeNS(java.lang.String namespaceURI, java.lang.String localName)
          Removes an attribute by local name and namespace URI.
 Attr Element.getAttributeNodeNS(java.lang.String namespaceURI, java.lang.String localName)
          Retrieves an Attr node by local name and namespace URI.
 Attr Element.setAttributeNodeNS(Attr newAttr)
          Adds a new attribute.
 NodeList Element.getElementsByTagNameNS(java.lang.String namespaceURI, java.lang.String localName)
          Returns a NodeList of all the descendant Elements with a given local name and namespace URI in document order.
 boolean Element.hasAttributeNS(java.lang.String namespaceURI, java.lang.String localName)
          Returns true when an attribute with a given local name and namespace URI is specified on this element or has a default value, false otherwise.
 void Element.setIdAttribute(java.lang.String name, boolean isId)
          If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute .
 void Element.setIdAttributeNS(java.lang.String namespaceURI, java.lang.String localName, boolean isId)
          If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute .
 void Element.setIdAttributeNode(Attr idAttr, boolean isId)
          If the parameter isId is true, this method declares the specified attribute to be a user-determined ID attribute .
 java.lang.String CharacterData.getData()
          The character data of the node that implements this interface.
 void CharacterData.setData(java.lang.String data)
          The character data of the node that implements this interface.
 java.lang.String CharacterData.substringData(int offset, int count)
          Extracts a range of data from the node.
 void CharacterData.appendData(java.lang.String arg)
          Append the string to the end of the character data of the node.
 void CharacterData.insertData(int offset, java.lang.String arg)
          Insert a string at the specified 16-bit unit offset.
 void CharacterData.deleteData(int offset, int count)
          Remove a range of 16-bit units from the node.
 void CharacterData.replaceData(int offset, int count, java.lang.String arg)
          Replace the characters starting at the specified 16-bit unit offset with the specified string.
 void ProcessingInstruction.setData(java.lang.String data)
          The content of this processing instruction.
 void Attr.setValue(java.lang.String value)
          On retrieval, the value of the attribute is returned as a string.
 DocumentType DOMImplementation.createDocumentType(java.lang.String qualifiedName, java.lang.String publicId, java.lang.String systemId)
          Creates an empty DocumentType node.
 Document DOMImplementation.createDocument(java.lang.String namespaceURI, java.lang.String qualifiedName, DocumentType doctype)
          Creates a DOM Document object of the specified type with its document element.
 Node NamedNodeMap.setNamedItem(Node arg)
          Adds a node using its nodeName attribute.
 Node NamedNodeMap.removeNamedItem(java.lang.String name)
          Removes a node specified by name.
 Node NamedNodeMap.getNamedItemNS(java.lang.String namespaceURI, java.lang.String localName)
          Retrieves a node specified by local name and namespace URI.
 Node NamedNodeMap.setNamedItemNS(Node arg)
          Adds a node using its namespaceURI and localName.
 Node NamedNodeMap.removeNamedItemNS(java.lang.String namespaceURI, java.lang.String localName)
          Removes a node specified by local name and namespace URI.
 java.lang.String Node.getNodeValue()
          The value of this node, depending on its type; see the table above.
 void Node.setNodeValue(java.lang.String nodeValue)
          The value of this node, depending on its type; see the table above.
 Node Node.insertBefore(Node newChild, Node refChild)
          Inserts the node newChild before the existing child node refChild.
 Node Node.replaceChild(Node newChild, Node oldChild)
          Replaces the child node oldChild with newChild in the list of children, and returns the oldChild node.
 Node Node.removeChild(Node oldChild)
          Removes the child node indicated by oldChild from the list of children, and returns it.
 Node Node.appendChild(Node newChild)
          Adds the node newChild to the end of the list of children of this node.
 void Node.setPrefix(java.lang.String prefix)
          The namespace prefix of this node, or null if it is unspecified.
 short Node.compareDocumentPosition(Node other)
          Compares the reference node, i.e.
 java.lang.String Node.getTextContent()
          This attribute returns the text content of this node and its descendants.
 void Node.setTextContent(java.lang.String textContent)
          This attribute returns the text content of this node and its descendants.
 Text Text.splitText(int offset)
          Breaks this node into two nodes at the specified offset, keeping both in the tree as siblings.
 Text Text.replaceWholeText(java.lang.String content)
          Replaces the text of the current node and all logically-adjacent text nodes with the specified text.
 Element Document.createElement(java.lang.String tagName)
          Creates an element of the type specified.
 CDATASection Document.createCDATASection(java.lang.String data)
          Creates a CDATASection node whose value is the specified string.
 ProcessingInstruction Document.createProcessingInstruction(java.lang.String target, java.lang.String data)
          Creates a ProcessingInstruction node given the specified name and data strings.
 Attr Document.createAttribute(java.lang.String name)
          Creates an Attr of the given name.
 EntityReference Document.createEntityReference(java.lang.String name)
          Creates an EntityReference object.
 Node Document.importNode(Node importedNode, boolean deep)
          Imports a node from another document to this document, without altering or removing the source node from the original document; this method creates a new copy of the source node.
 Element Document.createElementNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
          Creates an element of the given qualified name and namespace URI.
 Attr Document.createAttributeNS(java.lang.String namespaceURI, java.lang.String qualifiedName)
          Creates an attribute of the given qualified name and namespace URI.
 void Document.setXmlStandalone(boolean xmlStandalone)
          An attribute specifying, as part of the XML declaration, whether this document is standalone.
 void Document.setXmlVersion(java.lang.String xmlVersion)
          An attribute specifying, as part of the XML declaration, the version number of this document.
 Node Document.adoptNode(Node source)
          Attempts to adopt a node from another document to this document.
 Node Document.renameNode(Node n, java.lang.String namespaceURI, java.lang.String qualifiedName)
          Rename an existing node of type ELEMENT_NODE or ATTRIBUTE_NODE.
 void DOMConfiguration.setParameter(java.lang.String name, java.lang.Object value)
          Set the value of a parameter.
 java.lang.Object DOMConfiguration.getParameter(java.lang.String name)
          Return the value of a parameter if known.
 

Uses of DOMException in org.w3c.dom.css
 

Methods in org.w3c.dom.css that throw DOMException
 void CSSCharsetRule.setEncoding(java.lang.String encoding)
          The encoding information used in this @charset rule.
 void CSS2Properties.setAzimuth(java.lang.String azimuth)
          See the azimuth property definition in CSS2.
 void CSS2Properties.setBackground(java.lang.String background)
          See the background property definition in CSS2.
 void CSS2Properties.setBackgroundAttachment(java.lang.String backgroundAttachment)
          See the background-attachment property definition in CSS2.
 void CSS2Properties.setBackgroundColor(java.lang.String backgroundColor)
          See the background-color property definition in CSS2.
 void CSS2Properties.setBackgroundImage(java.lang.String backgroundImage)
          See the background-image property definition in CSS2.
 void CSS2Properties.setBackgroundPosition(java.lang.String backgroundPosition)
          See the background-position property definition in CSS2.
 void CSS2Properties.setBackgroundRepeat(java.lang.String backgroundRepeat)
          See the background-repeat property definition in CSS2.
 void CSS2Properties.setBorder(java.lang.String border)
          See the border property definition in CSS2.
 void CSS2Properties.setBorderCollapse(java.lang.String borderCollapse)
          See the border-collapse property definition in CSS2.
 void CSS2Properties.setBorderColor(java.lang.String borderColor)
          See the border-color property definition in CSS2.
 void CSS2Properties.setBorderSpacing(java.lang.String borderSpacing)
          See the border-spacing property definition in CSS2.
 void CSS2Properties.setBorderStyle(java.lang.String borderStyle)
          See the border-style property definition in CSS2.
 void CSS2Properties.setBorderTop(java.lang.String borderTop)
          See the border-top property definition in CSS2.
 void CSS2Properties.setBorderRight(java.lang.String borderRight)
          See the border-right property definition in CSS2.
 void CSS2Properties.setBorderBottom(java.lang.String borderBottom)
          See the border-bottom property definition in CSS2.
 void CSS2Properties.setBorderLeft(java.lang.String borderLeft)
          See the border-left property definition in CSS2.
 void CSS2Properties.setBorderTopColor(java.lang.String borderTopColor)
          See the border-top-color property definition in CSS2.
 void CSS2Properties.setBorderRightColor(java.lang.String borderRightColor)
          See the border-right-color property definition in CSS2.
 void CSS2Properties.setBorderBottomColor(java.lang.String borderBottomColor)
          See the border-bottom-color property definition in CSS2.
 void CSS2Properties.setBorderLeftColor(java.lang.String borderLeftColor)
          See the border-left-color property definition in CSS2.
 void CSS2Properties.setBorderTopStyle(java.lang.String borderTopStyle)
          See the border-top-style property definition in CSS2.
 void CSS2Properties.setBorderRightStyle(java.lang.String borderRightStyle)
          See the border-right-style property definition in CSS2.
 void CSS2Properties.setBorderBottomStyle(java.lang.String borderBottomStyle)
          See the border-bottom-style property definition in CSS2.
 void CSS2Properties.setBorderLeftStyle(java.lang.String borderLeftStyle)
          See the border-left-style property definition in CSS2.
 void CSS2Properties.setBorderTopWidth(java.lang.String borderTopWidth)
          See the border-top-width property definition in CSS2.
 void CSS2Properties.setBorderRightWidth(java.lang.String borderRightWidth)
          See the border-right-width property definition in CSS2.
 void CSS2Properties.setBorderBottomWidth(java.lang.String borderBottomWidth)
          See the border-bottom-width property definition in CSS2.
 void CSS2Properties.setBorderLeftWidth(java.lang.String borderLeftWidth)
          See the border-left-width property definition in CSS2.
 void CSS2Properties.setBorderWidth(java.lang.String borderWidth)
          See the border-width property definition in CSS2.
 void CSS2Properties.setBottom(java.lang.String bottom)
          See the bottom property definition in CSS2.
 void CSS2Properties.setCaptionSide(java.lang.String captionSide)
          See the caption-side property definition in CSS2.
 void CSS2Properties.setClear(java.lang.String clear)
          See the clear property definition in CSS2.
 void CSS2Properties.setClip(java.lang.String clip)
          See the clip property definition in CSS2.
 void CSS2Properties.setColor(java.lang.String color)
          See the color property definition in CSS2.
 void CSS2Properties.setContent(java.lang.String content)
          See the content property definition in CSS2.
 void CSS2Properties.setCounterIncrement(java.lang.String counterIncrement)
          See the counter-increment property definition in CSS2.
 void CSS2Properties.setCounterReset(java.lang.String counterReset)
          See the counter-reset property definition in CSS2.
 void CSS2Properties.setCue(java.lang.String cue)
          See the cue property definition in CSS2.
 void CSS2Properties.setCueAfter(java.lang.String cueAfter)
          See the cue-after property definition in CSS2.
 void CSS2Properties.setCueBefore(java.lang.String cueBefore)
          See the cue-before property definition in CSS2.
 void CSS2Properties.setCursor(java.lang.String cursor)
          See the cursor property definition in CSS2.
 void CSS2Properties.setDirection(java.lang.String direction)
          See the direction property definition in CSS2.
 void CSS2Properties.setDisplay(java.lang.String display)
          See the display property definition in CSS2.
 void CSS2Properties.setElevation(java.lang.String elevation)
          See the elevation property definition in CSS2.
 void CSS2Properties.setEmptyCells(java.lang.String emptyCells)
          See the empty-cells property definition in CSS2.
 void CSS2Properties.setCssFloat(java.lang.String cssFloat)
          See the float property definition in CSS2.
 void CSS2Properties.setFont(java.lang.String font)
          See the font property definition in CSS2.
 void CSS2Properties.setFontFamily(java.lang.String fontFamily)
          See the font-family property definition in CSS2.
 void CSS2Properties.setFontSize(java.lang.String fontSize)
          See the font-size property definition in CSS2.
 void CSS2Properties.setFontSizeAdjust(java.lang.String fontSizeAdjust)
          See the font-size-adjust property definition in CSS2.
 void CSS2Properties.setFontStretch(java.lang.String fontStretch)
          See the font-stretch property definition in CSS2.
 void CSS2Properties.setFontStyle(java.lang.String fontStyle)
          See the font-style property definition in CSS2.
 void CSS2Properties.setFontVariant(java.lang.String fontVariant)
          See the font-variant property definition in CSS2.
 void CSS2Properties.setFontWeight(java.lang.String fontWeight)
          See the font-weight property definition in CSS2.
 void CSS2Properties.setHeight(java.lang.String height)
          See the height property definition in CSS2.
 void CSS2Properties.setLeft(java.lang.String left)
          See the left property definition in CSS2.
 void CSS2Properties.setLetterSpacing(java.lang.String letterSpacing)
          See the letter-spacing property definition in CSS2.
 void CSS2Properties.setLineHeight(java.lang.String lineHeight)
          See the line-height property definition in CSS2.
 void CSS2Properties.setListStyle(java.lang.String listStyle)
          See the list-style property definition in CSS2.
 void CSS2Properties.setListStyleImage(java.lang.String listStyleImage)
          See the list-style-image property definition in CSS2.
 void CSS2Properties.setListStylePosition(java.lang.String listStylePosition)
          See the list-style-position property definition in CSS2.
 void CSS2Properties.setListStyleType(java.lang.String listStyleType)
          See the list-style-type property definition in CSS2.
 void CSS2Properties.setMargin(java.lang.String margin)
          See the margin property definition in CSS2.
 void CSS2Properties.setMarginTop(java.lang.String marginTop)
          See the margin-top property definition in CSS2.
 void CSS2Properties.setMarginRight(java.lang.String marginRight)
          See the margin-right property definition in CSS2.
 void CSS2Properties.setMarginBottom(java.lang.String marginBottom)
          See the margin-bottom property definition in CSS2.
 void CSS2Properties.setMarginLeft(java.lang.String marginLeft)
          See the margin-left property definition in CSS2.
 void CSS2Properties.setMarkerOffset(java.lang.String markerOffset)
          See the marker-offset property definition in CSS2.
 void CSS2Properties.setMarks(java.lang.String marks)
          See the marks property definition in CSS2.
 void CSS2Properties.setMaxHeight(java.lang.String maxHeight)
          See the max-height property definition in CSS2.
 void CSS2Properties.setMaxWidth(java.lang.String maxWidth)
          See the max-width property definition in CSS2.
&nbs