- getAltKey() - Method in interface org.w3c.dom.events.KeyboardEvent
-
true
if the alternative (Alt) key modifier is activated.
- getAltKey() - Method in interface org.w3c.dom.events.MouseEvent
-
true
if the alt (alternative) key modifier is activated.
- getAttrChange() - Method in interface org.w3c.dom.events.MutationEvent
-
attrChange
indicates the type of change which triggered
the DOMAttrModified event.
- getAttribute(String) - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Allows the user to retrieve specific attributes on the underlying
implementation.
- getAttribute(String) - Method in interface org.w3c.dom.Element
-
Retrieves an attribute value by name.
- getAttributeCount() - Method in interface javax.xml.stream.XMLStreamReader
-
Returns the count of attributes on this START_ELEMENT,
this method is only valid on a START_ELEMENT or ATTRIBUTE.
- getAttributeLocalName(int) - Method in interface javax.xml.stream.XMLStreamReader
-
Returns the localName of the attribute at the provided
index
- getAttributeNamespace(int) - Method in interface javax.xml.stream.XMLStreamReader
-
Returns the namespace of the attribute at the provided
index
- getAttributeNode(String) - Method in interface org.w3c.dom.Element
-
Retrieves an attribute node by name.
- getAttributeNodeNS(String, String) - Method in interface org.w3c.dom.Element
-
Retrieves an Attr
node by local name and namespace URI.
- getAttributeNS(String, String) - Method in interface org.w3c.dom.Element
-
Retrieves an attribute value by local name and namespace URI.
- getAttributePrefix(int) - Method in interface javax.xml.stream.XMLStreamReader
-
Returns the prefix of this attribute at the
provided index
- getAttributes() - Method in interface org.w3c.dom.Node
-
A NamedNodeMap
containing the attributes of this node (if
it is an Element
) or null
otherwise.
- getAttributeType(int) - Method in interface javax.xml.stream.XMLStreamReader
-
Returns the XML type of the attribute at the provided
index (see XML 1.0 Specification, section 3.3.1)
- getAttributeValue(String, String) - Method in interface javax.xml.stream.XMLStreamReader
-
Returns the normalized attribute value of the attribute with the namespace
and localName.
- getAttributeValue(int) - Method in interface javax.xml.stream.XMLStreamReader
-
Returns the value of the attribute at the
index
- getAttrName() - Method in interface org.w3c.dom.events.MutationEvent
-
attrName
indicates the name of the changed
Attr
node in a DOMAttrModified event.
- getBubbles() - Method in interface org.w3c.dom.events.Event
-
Used to indicate whether or not an event is a bubbling event.
- getButton() - Method in interface org.w3c.dom.events.MouseEvent
-
During mouse events caused by the depression or release of a mouse
button, button
is used to indicate which mouse button
changed state.
- getCancelable() - Method in interface org.w3c.dom.events.Event
-
Used to indicate whether or not an event can have its default action
prevented.
- getCharacterEncodingScheme() - Method in interface javax.xml.stream.XMLStreamReader
-
Returns the character encoding declared on the xml declaration
Returns null
if none was declared
- getCharacterOffset() - Method in interface javax.xml.stream.Location
-
Return the byte or character offset into the input source this location
is pointing to.
- getChildElementCount() - Method in interface org.w3c.dom.ElementTraversal
-
Retrieves the number of child elements.
- getChildNodes() - Method in interface org.w3c.dom.Node
-
A NodeList
that contains all children of this node.
- getClientX() - Method in interface org.w3c.dom.events.MouseEvent
-
The horizontal coordinate at which the event occurred relative to the
DOM implementation's client area.
- getClientY() - Method in interface org.w3c.dom.events.MouseEvent
-
The vertical coordinate at which the event occurred relative to the
DOM implementation's client area.
- getColumnNumber() - Method in interface javax.xml.stream.Location
-
Return the column number where the current event ends,
returns -1 if none is available.
- getCtrlKey() - Method in interface org.w3c.dom.events.KeyboardEvent
-
true
if the control (Ctrl) key modifier is activated.
- getCtrlKey() - Method in interface org.w3c.dom.events.MouseEvent
-
true
if the control (Ctrl) key modifier is activated.
- getCurrentTarget() - Method in interface org.w3c.dom.events.Event
-
Used to indicate the EventTarget
whose
EventListeners
are currently being processed.
- getData() - Method in interface org.w3c.dom.CharacterData
-
The character data of the node that implements this interface.
- getData() - Method in interface org.w3c.dom.events.TextEvent
-
data
holds the value of the characters generated by the
character device.
- getData() - Method in interface org.w3c.dom.ProcessingInstruction
-
The content of this processing instruction.
- getDefaultPrevented() - Method in interface org.w3c.dom.events.Event
-
Used to indicate whether Event.preventDefault()
has been
called for this event.
- getDefaultView() - Method in interface org.w3c.dom.views.DocumentView
-
The default AbstractView
for this Document
,
or null
if none available.
- getDetail() - Method in interface org.w3c.dom.events.CustomEvent
-
Specifies some detail information about the Event
.
- getDetail() - Method in interface org.w3c.dom.events.UIEvent
-
Specifies some detail information about the Event
,
depending on the type of event.
- getDoctype() - Method in interface org.w3c.dom.Document
-
The Document Type Declaration (see DocumentType
)
associated with this document.
- getDocument() - Method in interface org.w3c.dom.views.AbstractView
-
The source DocumentView
of which this is an
AbstractView
.
- getDocumentElement() - Method in interface org.w3c.dom.Document
-
This is a convenience attribute that allows direct access to the child
node that is the root element of the document.
- getDOMImplementation() - Method in class javax.xml.parsers.DocumentBuilder
-
- getElementById(String) - Method in interface org.w3c.dom.Document
-
Returns the Element
that has an ID attribute with the
given value.
- getElementsByTagName(String) - Method in interface org.w3c.dom.Document
-
Returns a NodeList
of all the Elements
with a
given tag name in the order in which they are encountered in a
preorder traversal of the Document
tree.
- getElementsByTagName(String) - Method in interface org.w3c.dom.Element
-
Returns a NodeList
of all descendant Elements
with a given tag name, in document order.
- getElementsByTagNameNS(String, String) - Method in interface org.w3c.dom.Document
-
Returns a NodeList
of all the Elements
with a
given local name and namespace URI in document order.
- getElementsByTagNameNS(String, String) - Method in interface org.w3c.dom.Element
-
Returns a NodeList
of all the descendant
Elements
with a given local name and namespace URI in
document order.
- getElementText() - Method in interface javax.xml.stream.XMLStreamReader
-
Reads the content of a text-only element, an exception is thrown if this
is not a text-only element.
- getEncoding() - Method in interface javax.xml.stream.XMLStreamReader
-
Return input encoding if known or null
if unknown.
- getEntities() - Method in interface org.w3c.dom.DocumentType
-
A NamedNodeMap
containing the general entities, both
external and internal, declared in the DTD.
- getEventPhase() - Method in interface org.w3c.dom.events.Event
-
Used to indicate which phase of event flow is currently being
evaluated.
- getEventType() - Method in interface javax.xml.stream.DTDStreamReader
-
Returns an integer code that indicates the type of the event at
the current cursor location.
- getEventType() - Method in interface javax.xml.stream.XMLStreamReader
-
Returns an integer code that indicates the type
of the event the cursor is pointing to.
- getException() - Method in error javax.xml.stream.FactoryConfigurationError
-
Return the nested exception (if any)
- getFeature(String) - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Get the state of the named feature.
- getFeature(String, String) - Method in interface org.w3c.dom.DOMImplementation
-
This method returns a specialized object which implements the
specialized APIs of the specified feature and version, as specified
in
DOM Features.
- getFeature(String, String) - Method in interface org.w3c.dom.Node
-
This method returns a specialized object which implements the
specialized APIs of the specified feature and version, as specified
in
DOM Features.
- getFirstChild() - Method in interface org.w3c.dom.Node
-
The first child of this node.
- getFirstElementChild() - Method in interface org.w3c.dom.ElementTraversal
-
Retrieves the first child element.
- getImplementation() - Method in interface org.w3c.dom.Document
-
The DOMImplementation
object that handles this document.
- getInternalSubset() - Method in interface org.w3c.dom.DocumentType
-
The internal subset as a string, or null
if there is none.
- getKeyIdentifier() - Method in interface org.w3c.dom.events.KeyboardEvent
-
keyIdentifier
holds the identifier of the key.
- getKeyLocation() - Method in interface org.w3c.dom.events.KeyboardEvent
-
The
keyLocation
attribute contains an indication of the
location of they key on the device, as described in
Keyboard event types.
- getLastChild() - Method in interface org.w3c.dom.Node
-
The last child of this node.
- getLastElementChild() - Method in interface org.w3c.dom.ElementTraversal
-
Retrieves the last child element.
- getLength() - Method in interface org.w3c.dom.CharacterData
-
The number of 16-bit units that are available through data
and the substringData
method below.
- getLength() - Method in interface org.w3c.dom.NamedNodeMap
-
The number of nodes in this map.
- getLength() - Method in interface org.w3c.dom.NodeList
-
The number of nodes in the list.
- getLengthComputable() - Method in interface org.w3c.dom.events.ProgressEvent
-
Specifies whether the total size of the transfer is known.
- getLineNumber() - Method in interface javax.xml.stream.Location
-
Return the line number where the current event ends,
returns -1 if none is available.
- getLoaded() - Method in interface org.w3c.dom.events.ProgressEvent
-
Specifies the number of bytes downloaded since the beginning of the
download.
- getLocalName() - Method in interface javax.xml.stream.XMLStreamReader
-
Returns the (local) name of the current event.
- getLocalName() - Method in interface org.w3c.dom.Node
-
Returns the local part of the qualified name of this node.
- getLocation() - Method in interface javax.xml.stream.DTDStreamReader
-
Returns the current location of the processor.
- getLocation() - Method in exception javax.xml.stream.XMLStreamException
-
Gets the location of the exception
- getLocation() - Method in interface javax.xml.stream.XMLStreamReader
-
Return the current location of the processor.
- getMessage() - Method in error javax.xml.stream.FactoryConfigurationError
-
Report the message associated with this error
- getMetaKey() - Method in interface org.w3c.dom.events.KeyboardEvent
-
true
if the meta (Meta) key modifier is activated.
- getMetaKey() - Method in interface org.w3c.dom.events.MouseEvent
-
true
if the meta (Meta) key modifier is activated.
- getName() - Method in interface javax.xml.stream.DTDStreamReader
-
Returns the name as a String.
- getName() - Method in interface org.w3c.dom.Attr
-
Returns the name of this attribute.
- getName() - Method in interface org.w3c.dom.DocumentType
-
The name of DTD; i.e., the name immediately following the
DOCTYPE
keyword.
- getNamedItem(String) - Method in interface org.w3c.dom.NamedNodeMap
-
Retrieves a node specified by name.
- getNamedItemNS(String, String) - Method in interface org.w3c.dom.NamedNodeMap
-
Retrieves a node specified by local name and namespace URI.
- getNamespaceCount() - Method in interface javax.xml.stream.XMLStreamReader
-
Returns the count of namespaces declared on this START_ELEMENT or
END_ELEMENT, this method is only valid on a START_ELEMENT, END_ELEMENT or
NAMESPACE.
- getNamespacePrefix(int) - Method in interface javax.xml.stream.XMLStreamReader
-
Returns the prefix for the namespace declared at the index.
- getNamespaceURI(String) - Method in interface javax.xml.stream.XMLStreamReader
-
Return the uri for the given prefix.
- getNamespaceURI(int) - Method in interface javax.xml.stream.XMLStreamReader
-
Returns the uri for the namespace declared at the
index.
- getNamespaceURI() - Method in interface javax.xml.stream.XMLStreamReader
-
If the current event is a START_ELEMENT or END_ELEMENT this method
returns the URI of the prefix or the default namespace.
- getNamespaceURI() - Method in interface org.w3c.dom.events.Event
-
The namespace URI associated with this event at creation time, or
null
if it is unspecified.
- getNamespaceURI() - Method in interface org.w3c.dom.Node
-
The namespace URI of this node, or null
if it is
unspecified.
- getNestedException() - Method in exception javax.xml.stream.XMLStreamException
-
Gets the nested exception.
- getNewValue() - Method in interface org.w3c.dom.events.MutationEvent
-
newValue
indicates the new value of the Attr
node in DOMAttrModified events, and of the CharacterData
node in DOMCharDataModified events.
- getNextElementSibling() - Method in interface org.w3c.dom.ElementTraversal
-
Retrieves the next sibling element.
- getNextSibling() - Method in interface org.w3c.dom.Node
-
The node immediately following this node.
- getNodeName() - Method in interface org.w3c.dom.Node
-
The name of this node, depending on its type; see the table above.
- getNodeType() - Method in interface org.w3c.dom.Node
-
A code representing the type of the underlying object, as defined above.
- getNodeValue() - Method in interface org.w3c.dom.Node
-
The value of this node, depending on its type; see the table above.
- getNotationName() - Method in interface javax.xml.stream.DTDStreamReader
-
Returns the notation name.
- getNotationName() - Method in interface org.w3c.dom.Entity
-
For unparsed entities, the name of the notation for the entity.
- getNotations() - Method in interface org.w3c.dom.DocumentType
-
A NamedNodeMap
containing the notations declared in the
DTD.
- getOwnerDocument() - Method in interface org.w3c.dom.Node
-
The Document
object associated with this node.
- getOwnerElement() - Method in interface org.w3c.dom.Attr
-
The Element
node this attribute is attached to or
null
if this attribute is not in use.
- getParent() - Method in interface org.xml.sax.XMLFilter
-
Get the parent reader.
- getParentNode() - Method in interface org.w3c.dom.Node
-
The parent of this node.
- getPIData() - Method in interface javax.xml.stream.DTDStreamReader
-
Returns the data section of a processing instruction.
- getPIData() - Method in interface javax.xml.stream.XMLStreamReader
-
Get the data section of a processing instruction
- getPITarget() - Method in interface javax.xml.stream.DTDStreamReader
-
Returns the target of a processing instruction.
- getPITarget() - Method in interface javax.xml.stream.XMLStreamReader
-
Get the target of a processing instruction
- getPrefix() - Method in interface javax.xml.stream.XMLStreamReader
-
Returns the prefix of the current event or null
if the event
does not have a prefix
- getPrefix(String) - Method in interface javax.xml.stream.XMLStreamWriter
-
Gets the prefix the uri is bound to
- getPrefix() - Method in interface org.w3c.dom.Node
-
The namespace prefix of this node, or null
if it is
unspecified.
- getPreviousElementSibling() - Method in interface org.w3c.dom.ElementTraversal
-
Retrieves the previous sibling element.
- getPreviousSibling() - Method in interface org.w3c.dom.Node
-
The node immediately preceding this node.
- getPrevValue() - Method in interface org.w3c.dom.events.MutationEvent
-
prevValue
indicates the previous value of the
Attr
node in DOMAttrModified events, and of the
CharacterData
node in DOMCharDataModified events.
- getProperty(String) - Method in class javax.xml.stream.XMLInputFactory
-
Get the value of a feature/property from the underlying implementation
- getProperty(String) - Method in class javax.xml.stream.XMLOutputFactory
-
Get a feature/property on the underlying implementation
- getProperty(String) - Method in interface javax.xml.stream.XMLStreamReader
-
Get the value of a feature/property from the underlying implementation
- getProperty(String) - Method in interface javax.xml.stream.XMLStreamWriter
-
Get the value of a feature/property from the underlying implementation
- getPublicId() - Method in interface javax.xml.stream.Location
-
Returns the public ID of the XML
- getPublicId() - Method in interface org.w3c.dom.DocumentType
-
The public identifier of the external subset.
- getPublicId() - Method in interface org.w3c.dom.Entity
-
The public identifier associated with the entity, if specified.
- getPublicId() - Method in interface org.w3c.dom.Notation
-
The public identifier of this notation.
- getPublicIdentifier() - Method in interface javax.xml.stream.DTDStreamReader
-
Returns the public identifier.
- getRelatedNode() - Method in interface org.w3c.dom.events.MutationEvent
-
relatedNode
is used to identify a secondary node related
to a mutation event.
- getRelatedTarget() - Method in interface org.w3c.dom.events.MouseEvent
-
Used to identify a secondary EventTarget
related to a UI
event, depending on the type of event.
- getScreenX() - Method in interface org.w3c.dom.events.MouseEvent
-
The horizontal coordinate at which the event occurred relative to the
origin of the screen coordinate system.
- getScreenY() - Method in interface org.w3c.dom.events.MouseEvent
-
The vertical coordinate at which the event occurred relative to the
origin of the screen coordinate system.
- getShiftKey() - Method in interface org.w3c.dom.events.KeyboardEvent
-
true
if the shift (Shift) key modifier is activated.
- getShiftKey() - Method in interface org.w3c.dom.events.MouseEvent
-
true
if the shift (Shift) key modifier is activated.
- getSpecified() - Method in interface org.w3c.dom.Attr
-
If this attribute was explicitly given a value in the original
document, this is true
; otherwise, it is
false
.
- getSystemId() - Method in interface javax.xml.stream.Location
-
Returns the system ID of the XML
- getSystemId() - Method in interface org.w3c.dom.DocumentType
-
The system identifier of the external subset.
- getSystemId() - Method in interface org.w3c.dom.Entity
-
The system identifier associated with the entity, if specified.
- getSystemId() - Method in interface org.w3c.dom.Notation
-
The system identifier of this notation.
- getSystemIdentifier() - Method in interface javax.xml.stream.DTDStreamReader
-
Returns the system identifier.
- getTagName() - Method in interface org.w3c.dom.Element
-
The name of the element.
- getTarget() - Method in interface org.w3c.dom.events.Event
-
Used to indicate the EventTarget
to which the event was
originally dispatched.
- getTarget() - Method in interface org.w3c.dom.ProcessingInstruction
-
The target of this processing instruction.
- getText() - Method in interface javax.xml.stream.DTDStreamReader
-
Returns the current value of the parse event as a string.
- getText() - Method in interface javax.xml.stream.XMLStreamReader
-
Returns the current value of the parse event as a string, this returns the
string value of a CHARACTERS event, returns the value of a COMMENT, the
replacement value for an ENTITY_REFERENCE, the string value of a CDATA
section, the string value for a SPACE event, or the String value of the
internal subset of the DTD.
- getTextCharacters() - Method in interface javax.xml.stream.DTDStreamReader
-
Returns an array which contains the characters from this event.
- getTextCharacters() - Method in interface javax.xml.stream.XMLStreamReader
-
Returns an array which contains the characters from this event.
- getTextContent() - Method in interface org.w3c.dom.Node
-
This attribute returns the text content of this node and its
descendants.
- getTextLength() - Method in interface javax.xml.stream.DTDStreamReader
-
Returns the length of the sequence of characters for the current event
within the text character array.
- getTextLength() - Method in interface javax.xml.stream.XMLStreamReader
-
Returns the length of the sequence of characters for this Text event within
the text character array.
- getTextStart() - Method in interface javax.xml.stream.DTDStreamReader
-
Returns the offset into the text character array at which the first
character of the data for the current event is located.
- getTextStart() - Method in interface javax.xml.stream.XMLStreamReader
-
Returns the offset into the text character array where the first character
(of this text event) is stored.
- getTimeStamp() - Method in interface org.w3c.dom.events.Event
-
Used to specify the time (in milliseconds relative to the epoch) at
which the event was created.
- getTotal() - Method in interface org.w3c.dom.events.ProgressEvent
-
Specifies the expected total number of bytes of the content
transferred in the operation.
- getType() - Method in interface org.w3c.dom.events.Event
-
The name of the event (case-sensitive).
- getUserData(String) - Method in interface org.w3c.dom.Node
-
Retrieves the object associated to a key on a this node.
- getValue() - Method in interface org.w3c.dom.Attr
-
Returns the value of this attribute.
- getVersion() - Method in interface javax.xml.stream.XMLStreamReader
-
Get the xml version declared on the xml declaration.
- getView() - Method in interface org.w3c.dom.events.UIEvent
-
The view
attribute identifies the
AbstractView
from which the event was generated.
- getWheelDelta() - Method in interface org.w3c.dom.events.MouseWheelEvent
-
Indicates the number of "clicks" the wheel has been rotated.
- getXMLResolver() - Method in class javax.xml.stream.XMLInputFactory
-
The resolver that will be set on any XMLStreamReader created
by this factory instance.
- importNode(Node, boolean) - Method in interface org.w3c.dom.Document
-
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.
- INDEX_SIZE_ERR - Static variable in exception org.w3c.dom.DOMException
-
If index or size is negative, or greater than the allowed value
- initCustomEventNS(String, String, boolean, boolean, Object) - Method in interface org.w3c.dom.events.CustomEvent
-
The initCustomEventNS
method is used to initialize the
value of a CustomEvent
object and has the same behavior
as Event.initEventNS()
.
- initEvent(String, boolean, boolean) - Method in interface org.w3c.dom.events.Event
-
The initEvent
method is used to initialize the value of an
Event
created through the DocumentEvent
interface.
- initEventNS(String, String, boolean, boolean) - Method in interface org.w3c.dom.events.Event
-
The initEventNS
method is used to initialize the value of
an Event
object and has the same behavior as
Event.initEvent()
.
- initKeyboardEvent(String, boolean, boolean, AbstractView, String, int, String) - Method in interface org.w3c.dom.events.KeyboardEvent
-
The initKeyboardEvent
method is used to initialize the
value of a KeyboardEvent
object and has the same
behavior as UIEvent.initUIEvent()
.
- initKeyboardEventNS(String, String, boolean, boolean, AbstractView, String, int, String) - Method in interface org.w3c.dom.events.KeyboardEvent
-
The initKeyboardEventNS
method is used to initialize the
value of a KeyboardEvent
object and has the same
behavior as UIEvent.initUIEventNS()
.
- initMouseEvent(String, boolean, boolean, AbstractView, int, int, int, int, int, boolean, boolean, boolean, boolean, short, EventTarget) - Method in interface org.w3c.dom.events.MouseEvent
-
The initMouseEvent
method is used to initialize the value
of a MouseEvent
object and has the same behavior as
UIEvent.initUIEvent()
.
- initMouseEventNS(String, String, boolean, boolean, AbstractView, int, int, int, int, int, short, EventTarget, String) - Method in interface org.w3c.dom.events.MouseEvent
-
The initMouseEventNS
method is used to initialize the
value of a MouseEvent
object and has the same behavior
as UIEvent.initUIEventNS()
.
- initMouseWheelEventNS(String, String, boolean, boolean, AbstractView, int, int, int, int, int, short, EventTarget, String, int) - Method in interface org.w3c.dom.events.MouseWheelEvent
-
The initMouseWheelEventNS
method is used to initialize the
value of a MouseWheelEvent
object and has the same
behavior as Event.initEventNS()
.
- initMutationEvent(String, boolean, boolean, Node, String, String, String, short) - Method in interface org.w3c.dom.events.MutationEvent
-
The initMutationEvent
method is used to initialize the
value of a MutationEvent
object and has the same
behavior as Event.initEvent()
.
- initMutationEventNS(String, String, boolean, boolean, Node, String, String, String, short) - Method in interface org.w3c.dom.events.MutationEvent
-
The initMutationEventNS
method is used to initialize the
value of a MutationEvent
object and has the same
behavior as Event.initEventNS()
.
- initProgressEvent(String, boolean, boolean, boolean, int, int) - Method in interface org.w3c.dom.events.ProgressEvent
-
The initProgressEvent method is used to initialize the value of a
progress event created through the DocumentEvent interface.
- initProgressEventNS(String, String, boolean, boolean, boolean, int, int) - Method in interface org.w3c.dom.events.ProgressEvent
-
The initProgressEventNS method is used to initialize the value of a
namespaced progress event created through the DocumentEvent interface.
- initTextEvent(String, boolean, boolean, AbstractView, String) - Method in interface org.w3c.dom.events.TextEvent
-
The initTextEvent
method is used to initialize the value
of a TextEvent
object and has the same behavior as
UIEvent.initUIEvent()
.
- initTextEventNS(String, String, boolean, boolean, AbstractView, String) - Method in interface org.w3c.dom.events.TextEvent
-
The initTextEventNS
method is used to initialize the
value of a TextEvent
object and has the same behavior as
UIEvent.initUIEventNS()
.
- initUIEvent(String, boolean, boolean, AbstractView, int) - Method in interface org.w3c.dom.events.UIEvent
-
The initUIEvent
method is used to initialize the value of
a UIEvent
object and has the same behavior as
Event.initEvent()
.
- initUIEventNS(String, String, boolean, boolean, AbstractView, int) - Method in interface org.w3c.dom.events.UIEvent
-
The initUIEventNS
method is used to initialize the value
of a UIEvent
object and has the same behavior as
Event.initEventNS()
.
- insertBefore(Node, Node) - Method in interface org.w3c.dom.Node
-
Inserts the node newChild
before the existing child node
refChild
.
- insertData(int, String) - Method in interface org.w3c.dom.CharacterData
-
Insert a string at the specified 16-bit unit offset.
- INUSE_ATTRIBUTE_ERR - Static variable in exception org.w3c.dom.DOMException
-
If an attempt is made to add an attribute that is already in use
elsewhere
- INVALID_ACCESS_ERR - Static variable in exception org.w3c.dom.DOMException
-
If a parameter or an operation is not supported by the underlying
object.
- INVALID_CHARACTER_ERR - Static variable in exception org.w3c.dom.DOMException
-
If an invalid or illegal character is specified, such as in a name.
- INVALID_MODIFICATION_ERR - Static variable in exception org.w3c.dom.DOMException
-
If an attempt is made to modify the type of the underlying object.
- INVALID_STATE_ERR - Static variable in exception org.w3c.dom.DOMException
-
If an attempt is made to use an object that is not, or is no longer,
usable.
- IS_COALESCING - Static variable in class javax.xml.stream.XMLInputFactory
-
The property that requires the parser to coalesce adjacent character data
sections
- IS_NAMESPACE_AWARE - Static variable in class javax.xml.stream.XMLInputFactory
-
The property used to turn on/off namespace support,
this is to support XML 1.0 documents,
only the true
setting must be supported
- IS_REPAIRING_NAMESPACES - Static variable in class javax.xml.stream.XMLOutputFactory
-
Property used to set prefix defaulting on the output side
- IS_REPLACING_ENTITY_REFERENCES - Static variable in class javax.xml.stream.XMLInputFactory
-
Requires the parser to replace internal
entity references with their replacement
text and report them as characters
- IS_SUPPORTING_EXTERNAL_ENTITIES - Static variable in class javax.xml.stream.XMLInputFactory
-
The property that requires the parser to resolve external parsed entities
- IS_VALIDATING - Static variable in class javax.xml.stream.XMLInputFactory
-
The property used to turn on/off implementation specific validation
- isAttributeSpecified(int) - Method in interface javax.xml.stream.XMLStreamReader
-
Returns a boolean which indicates if this
attribute was created by default
- isCoalescing() - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Indicates whether or not the factory is configured to produce
parsers which converts CDATA nodes to Text nodes and appends it to
the adjacent (if any) Text node.
- isExpandEntityReferences() - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Indicates whether or not the factory is configured to produce
parsers which expand entity reference nodes.
- isId() - Method in interface org.w3c.dom.Attr
-
Returns whether this attribute is known to be of type ID or not.
- isIgnoringComments() - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Indicates whether or not the factory is configured to produce
parsers which ignores comments.
- isIgnoringElementContentWhitespace() - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Indicates whether or not the factory is configured to produce
parsers which ignore ignorable whitespace in element content.
- isNamespaceAware() - Method in class javax.xml.parsers.DocumentBuilder
-
Indicates whether or not this parser is configured to
understand namespaces.
- isNamespaceAware() - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Indicates whether or not the factory is configured to produce
parsers which are namespace aware.
- isPropertySupported(String) - Method in class javax.xml.stream.XMLInputFactory
-
Query the set of properties that this factory supports.
- isPropertySupported(String) - Method in class javax.xml.stream.XMLOutputFactory
-
Query the set of properties that this factory supports.
- isStandalone() - Method in interface javax.xml.stream.XMLStreamReader
-
Get the standalone declaration from the xml declaration
- isSupported(String, String) - Method in interface org.w3c.dom.Node
-
Tests whether the DOM implementation implements a specific feature and
that feature is supported by this node.
- isValidating() - Method in class javax.xml.parsers.DocumentBuilder
-
Indicates whether or not this parser is configured to
validate XML documents.
- isValidating() - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Indicates whether or not the factory is configured to produce
parsers which validate the XML content during parse.
- isWhiteSpace() - Method in interface javax.xml.stream.XMLStreamReader
-
Returns true
if the cursor points to a character data event
that consists of all whitespace
- item(int) - Method in interface org.w3c.dom.NamedNodeMap
-
Returns the index
th item in the map.
- item(int) - Method in interface org.w3c.dom.NodeList
-
Returns the index
th item in the collection.
- setAttribute(String, Object) - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Allows the user to set specific attributes on the underlying
implementation.
- setAttribute(String, String) - Method in interface org.w3c.dom.Element
-
Adds a new attribute.
- setAttributeNode(Attr) - Method in interface org.w3c.dom.Element
-
Adds a new attribute node.
- setAttributeNodeNS(Attr) - Method in interface org.w3c.dom.Element
-
Adds a new attribute.
- setAttributeNS(String, String, String) - Method in interface org.w3c.dom.Element
-
Adds a new attribute.
- setCoalescing(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Specifies that the parser produced by this code will
convert CDATA nodes to Text nodes and append it to the
adjacent (if any) text node.
- setData(String) - Method in interface org.w3c.dom.CharacterData
-
The character data of the node that implements this interface.
- setData(String) - Method in interface org.w3c.dom.ProcessingInstruction
-
The content of this processing instruction.
- setDefaultNamespace(String) - Method in interface javax.xml.stream.XMLStreamWriter
-
Binds a URI to the default namespace
This URI is bound
in the scope of the current START_ELEMENT / END_ELEMENT pair.
- setEntityResolver(EntityResolver) - Method in class javax.xml.parsers.DocumentBuilder
-
Specify the EntityResolver
to be used to resolve
entities present in the XML document to be parsed.
- setErrorHandler(ErrorHandler) - Method in class javax.xml.parsers.DocumentBuilder
-
Specify the ErrorHandler
to be used by the parser.
- setExpandEntityReferences(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Specifies that the parser produced by this code will
expand entity reference nodes.
- setFeature(String, boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Set a feature for this DocumentBuilderFactory
and
DocumentBuilder
s created by this factory.
- setIdAttribute(String, boolean) - Method in interface org.w3c.dom.Element
-
If the parameter isId
is true
, this method
declares the specified attribute to be a user-determined ID attribute
.
- setIdAttributeNode(Attr, boolean) - Method in interface org.w3c.dom.Element
-
If the parameter isId
is true
, this method
declares the specified attribute to be a user-determined ID attribute
.
- setIdAttributeNS(String, String, boolean) - Method in interface org.w3c.dom.Element
-
If the parameter isId
is true
, this method
declares the specified attribute to be a user-determined ID attribute
.
- setIgnoringComments(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Specifies that the parser produced by this code will
ignore comments.
- setIgnoringElementContentWhitespace(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Specifies that the parsers created by this factory must eliminate
whitespace in element content (sometimes known loosely as
'ignorable whitespace') when parsing XML documents (see XML Rec
2.10).
- setNamedItem(Node) - Method in interface org.w3c.dom.NamedNodeMap
-
Adds a node using its nodeName
attribute.
- setNamedItemNS(Node) - Method in interface org.w3c.dom.NamedNodeMap
-
Adds a node using its namespaceURI
and
localName
.
- setNamespaceAware(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Specifies that the parser produced by this code will
provide support for XML namespaces.
- setNodeValue(String) - Method in interface org.w3c.dom.Node
-
The value of this node, depending on its type; see the table above.
- setParent(XMLReader) - Method in interface org.xml.sax.XMLFilter
-
Set the parent reader.
- setPrefix(String, String) - Method in interface javax.xml.stream.XMLStreamWriter
-
Sets the prefix the uri is bound to.
- setPrefix(String) - Method in interface org.w3c.dom.Node
-
The namespace prefix of this node, or null
if it is
unspecified.
- setProperty(String, Object) - Method in class javax.xml.stream.XMLInputFactory
-
Allows the user to set specific feature/property on the underlying
implementation.
- setProperty(String, Object) - Method in class javax.xml.stream.XMLOutputFactory
-
Allows the user to set specific features/properties on the underlying
implementation.
- setTextContent(String) - Method in interface org.w3c.dom.Node
-
This attribute returns the text content of this node and its
descendants.
- setUserData(String, Object, UserDataHandler) - Method in interface org.w3c.dom.Node
-
Associate an object to a key on this node.
- setValidating(boolean) - Method in class javax.xml.parsers.DocumentBuilderFactory
-
Specifies that the parser produced by this code will
validate documents as they are parsed.
- setValue(String) - Method in interface org.w3c.dom.Attr
-
Sets the value of this attribute.
- setXMLResolver(XMLResolver) - Method in class javax.xml.stream.XMLInputFactory
-
The resolver that will be set on any XMLStreamReader created
by this factory instance.
- SPACE - Static variable in interface javax.xml.stream.XMLStreamConstants
-
The characters are white space
(see [XML], 2.10 "White Space Handling").
- splitText(int) - Method in interface org.w3c.dom.Text
-
Breaks this node into two nodes at the specified offset
,
keeping both in the tree as siblings.
- standaloneSet() - Method in interface javax.xml.stream.XMLStreamReader
-
Checks if standalone was set in the document
- START_DOCUMENT - Static variable in interface javax.xml.stream.XMLStreamConstants
-
Indicates an event is a start document
- START_DTD - Static variable in interface javax.xml.stream.DTDStreamReader
-
Indicates an event is the start of a DTD.
- START_ELEMENT - Static variable in interface javax.xml.stream.XMLStreamConstants
-
Indicates an event is a start element
- stopPropagation() - Method in interface org.w3c.dom.events.Event
-
The stopPropagation
method is used prevent further
propagation of an event during event flow.
- StreamFilter - Interface in javax.xml.stream
-
This interface declares a simple filter interface that one can
create to filter XMLStreamReaders
- substringData(int, int) - Method in interface org.w3c.dom.CharacterData
-
Extracts a range of data from the node.
- SUPPORT_DTD - Static variable in class javax.xml.stream.XMLInputFactory
-
The property that requires the parser to support DTDs
- SYNTAX_ERR - Static variable in exception org.w3c.dom.DOMException
-
If an invalid or illegal string is specified.