Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

gnu.xml.dom.html2
Class DomHTMLAnchorElement  view DomHTMLAnchorElement download DomHTMLAnchorElement.java

java.lang.Object
  extended bygnu.xml.dom.DomNode
      extended bygnu.xml.dom.DomNsNode
          extended bygnu.xml.dom.DomElement
              extended bygnu.xml.dom.html2.DomHTMLElement
                  extended bygnu.xml.dom.html2.DomHTMLAnchorElement
All Implemented Interfaces:
java.lang.Cloneable, java.lang.Comparable, org.w3c.dom.events.DocumentEvent, org.w3c.dom.Element, org.w3c.dom.events.EventTarget, org.w3c.dom.html2.HTMLAnchorElement, org.w3c.dom.html2.HTMLElement, org.w3c.dom.Node, org.w3c.dom.NodeList

public class DomHTMLAnchorElement
extends DomHTMLElement
implements org.w3c.dom.html2.HTMLAnchorElement

An HTML 'A' element node.


Nested Class Summary
 
Nested classes inherited from class gnu.xml.dom.DomNode
 
Field Summary
 
Fields inherited from class gnu.xml.dom.DomElement
 
Fields inherited from class gnu.xml.dom.DomNsNode
 
Fields inherited from class gnu.xml.dom.DomNode
 
Fields inherited from interface org.w3c.dom.Node
ATTRIBUTE_NODE, CDATA_SECTION_NODE, COMMENT_NODE, DOCUMENT_FRAGMENT_NODE, DOCUMENT_NODE, DOCUMENT_POSITION_CONTAINED_BY, DOCUMENT_POSITION_CONTAINS, DOCUMENT_POSITION_DISCONNECTED, DOCUMENT_POSITION_FOLLOWING, DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, DOCUMENT_POSITION_PRECEDING, DOCUMENT_TYPE_NODE, ELEMENT_NODE, ENTITY_NODE, ENTITY_REFERENCE_NODE, NOTATION_NODE, PROCESSING_INSTRUCTION_NODE, TEXT_NODE
 
Constructor Summary
protected DomHTMLAnchorElement(DomHTMLDocument owner, java.lang.String namespaceURI, java.lang.String name)
           
 
Method Summary
 void blur()
          Removes keyboard focus from this element.
 void focus()
          Gives keyboard focus to this element.
 java.lang.String getAccessKey()
          A single character access key to give access to the form control.
 java.lang.String getCharset()
          The character encoding of the linked resource.
 java.lang.String getCoords()
          Comma-separated list of lengths, defining an active region geometry.
 java.lang.String getHref()
          The absolute URI [IETF RFC 2396] of the linked resource.
 java.lang.String getHreflang()
          Language code of the linked resource.
 java.lang.String getName()
          Anchor name.
 java.lang.String getRel()
          Forward link type.
 java.lang.String getRev()
          Reverse link type.
 java.lang.String getShape()
          The shape of the active area.
 int getTabIndex()
          Index that represents the element's position in the tabbing order.
 java.lang.String getTarget()
          Frame to render the resource in.
 java.lang.String getType()
          Advisory content type.
 void setAccessKey(java.lang.String accessKey)
          A single character access key to give access to the form control.
 void setCharset(java.lang.String charset)
          The character encoding of the linked resource.
 void setCoords(java.lang.String coords)
          Comma-separated list of lengths, defining an active region geometry.
 void setHref(java.lang.String href)
          The absolute URI [IETF RFC 2396] of the linked resource.
 void setHreflang(java.lang.String hreflang)
          Language code of the linked resource.
 void setName(java.lang.String name)
          Anchor name.
 void setRel(java.lang.String rel)
          Forward link type.
 void setRev(java.lang.String rev)
          Reverse link type.
 void setShape(java.lang.String shape)
          The shape of the active area.
 void setTabIndex(int tabIndex)
          Index that represents the element's position in the tabbing order.
 void setTarget(java.lang.String target)
          Frame to render the resource in.
 void setType(java.lang.String type)
          Advisory content type.
 
Methods inherited from class gnu.xml.dom.html2.DomHTMLElement
dispatchUIEvent, getBooleanHTMLAttribute, getChildElement, getClassName, getDir, getHTMLAttribute, getId, getIndex, getIntHTMLAttribute, getLang, getParentElement, getTitle, setBooleanHTMLAttribute, setClassName, setDir, setHTMLAttribute, setId, setIntHTMLAttribute, setLang, setTitle
 
Methods inherited from class gnu.xml.dom.DomElement
clone, getAttribute, getAttributeNode, getAttributeNodeNS, getAttributeNS, getAttributes, getBaseURI, getSchemaTypeInfo, getTagName, hasAttribute, hasAttributeNS, hasAttributes, isDefaultNamespace, isEqualNode, lookupNamespaceURI, lookupPrefix, makeReadonly, removeAttribute, removeAttributeNode, removeAttributeNS, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS, setIdAttribute, setIdAttributeNode, setIdAttributeNS
 
Methods inherited from class gnu.xml.dom.DomNsNode
getLocalName, getNamespaceURI, getNodeName, getPrefix, setPrefix
 
Methods inherited from class gnu.xml.dom.DomNode
addEventListener, appendChild, cloneNode, compact, compareDocumentPosition, compareTo, createEvent, dispatchEvent, getChildNodes, getElementsByTagName, getElementsByTagNameNS, getFeature, getFirstChild, getLastChild, getLength, getNextSibling, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPreviousSibling, getTextContent, getUserData, hasChildNodes, insertBefore, isReadonly, isSameNode, isSupported, item, list, nameAndTypeEquals, normalize, removeChild, removeEventListener, replaceChild, setNodeValue, setTextContent, setUserData, toString, trimToSize
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.w3c.dom.html2.HTMLElement
getClassName, getDir, getId, getLang, getTitle, setClassName, setDir, setId, setLang, setTitle
 
Methods inherited from interface org.w3c.dom.Element
getAttribute, getAttributeNode, getAttributeNodeNS, getAttributeNS, getElementsByTagName, getElementsByTagNameNS, getSchemaTypeInfo, getTagName, hasAttribute, hasAttributeNS, removeAttribute, removeAttributeNode, removeAttributeNS, setAttribute, setAttributeNode, setAttributeNodeNS, setAttributeNS, setIdAttribute, setIdAttributeNode, setIdAttributeNS
 
Methods inherited from interface org.w3c.dom.Node
appendChild, cloneNode, compareDocumentPosition, getAttributes, getBaseURI, getChildNodes, getFeature, getFirstChild, getLastChild, getLocalName, getNamespaceURI, getNextSibling, getNodeName, getNodeType, getNodeValue, getOwnerDocument, getParentNode, getPrefix, getPreviousSibling, getTextContent, getUserData, hasAttributes, hasChildNodes, insertBefore, isDefaultNamespace, isEqualNode, isSameNode, isSupported, lookupNamespaceURI, lookupPrefix, normalize, removeChild, replaceChild, setNodeValue, setPrefix, setTextContent, setUserData
 

Constructor Detail

DomHTMLAnchorElement

protected DomHTMLAnchorElement(DomHTMLDocument owner,
                               java.lang.String namespaceURI,
                               java.lang.String name)
Method Detail

getAccessKey

public java.lang.String getAccessKey()
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
A single character access key to give access to the form control. See the accesskey attribute definition in HTML 4.01.

Specified by:
getAccessKey in interface org.w3c.dom.html2.HTMLAnchorElement

setAccessKey

public void setAccessKey(java.lang.String accessKey)
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
A single character access key to give access to the form control. See the accesskey attribute definition in HTML 4.01.

Specified by:
setAccessKey in interface org.w3c.dom.html2.HTMLAnchorElement

getCharset

public java.lang.String getCharset()
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
The character encoding of the linked resource. See the charset attribute definition in HTML 4.01.

Specified by:
getCharset in interface org.w3c.dom.html2.HTMLAnchorElement

setCharset

public void setCharset(java.lang.String charset)
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
The character encoding of the linked resource. See the charset attribute definition in HTML 4.01.

Specified by:
setCharset in interface org.w3c.dom.html2.HTMLAnchorElement

getCoords

public java.lang.String getCoords()
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
Comma-separated list of lengths, defining an active region geometry. See also shape for the shape of the region. See the coords attribute definition in HTML 4.01.

Specified by:
getCoords in interface org.w3c.dom.html2.HTMLAnchorElement

setCoords

public void setCoords(java.lang.String coords)
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
Comma-separated list of lengths, defining an active region geometry. See also shape for the shape of the region. See the coords attribute definition in HTML 4.01.

Specified by:
setCoords in interface org.w3c.dom.html2.HTMLAnchorElement

getHref

public java.lang.String getHref()
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
The absolute URI [IETF RFC 2396] of the linked resource. See the href attribute definition in HTML 4.01.

Specified by:
getHref in interface org.w3c.dom.html2.HTMLAnchorElement

setHref

public void setHref(java.lang.String href)
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
The absolute URI [IETF RFC 2396] of the linked resource. See the href attribute definition in HTML 4.01.

Specified by:
setHref in interface org.w3c.dom.html2.HTMLAnchorElement

getHreflang

public java.lang.String getHreflang()
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
Language code of the linked resource. See the hreflang attribute definition in HTML 4.01.

Specified by:
getHreflang in interface org.w3c.dom.html2.HTMLAnchorElement

setHreflang

public void setHreflang(java.lang.String hreflang)
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
Language code of the linked resource. See the hreflang attribute definition in HTML 4.01.

Specified by:
setHreflang in interface org.w3c.dom.html2.HTMLAnchorElement

getName

public java.lang.String getName()
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
Anchor name. See the name attribute definition in HTML 4.01.

Specified by:
getName in interface org.w3c.dom.html2.HTMLAnchorElement

setName

public void setName(java.lang.String name)
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
Anchor name. See the name attribute definition in HTML 4.01.

Specified by:
setName in interface org.w3c.dom.html2.HTMLAnchorElement

getRel

public java.lang.String getRel()
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
Forward link type. See the rel attribute definition in HTML 4.01.

Specified by:
getRel in interface org.w3c.dom.html2.HTMLAnchorElement

setRel

public void setRel(java.lang.String rel)
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
Forward link type. See the rel attribute definition in HTML 4.01.

Specified by:
setRel in interface org.w3c.dom.html2.HTMLAnchorElement

getRev

public java.lang.String getRev()
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
Reverse link type. See the rev attribute definition in HTML 4.01.

Specified by:
getRev in interface org.w3c.dom.html2.HTMLAnchorElement

setRev

public void setRev(java.lang.String rev)
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
Reverse link type. See the rev attribute definition in HTML 4.01.

Specified by:
setRev in interface org.w3c.dom.html2.HTMLAnchorElement

getShape

public java.lang.String getShape()
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
The shape of the active area. The coordinates are given by coords. See the shape attribute definition in HTML 4.01.

Specified by:
getShape in interface org.w3c.dom.html2.HTMLAnchorElement

setShape

public void setShape(java.lang.String shape)
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
The shape of the active area. The coordinates are given by coords. See the shape attribute definition in HTML 4.01.

Specified by:
setShape in interface org.w3c.dom.html2.HTMLAnchorElement

getTabIndex

public int getTabIndex()
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
Index that represents the element's position in the tabbing order. See the tabindex attribute definition in HTML 4.01.

Specified by:
getTabIndex in interface org.w3c.dom.html2.HTMLAnchorElement

setTabIndex

public void setTabIndex(int tabIndex)
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
Index that represents the element's position in the tabbing order. See the tabindex attribute definition in HTML 4.01.

Specified by:
setTabIndex in interface org.w3c.dom.html2.HTMLAnchorElement

getTarget

public java.lang.String getTarget()
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
Frame to render the resource in. See the target attribute definition in HTML 4.01.

Specified by:
getTarget in interface org.w3c.dom.html2.HTMLAnchorElement

setTarget

public void setTarget(java.lang.String target)
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
Frame to render the resource in. See the target attribute definition in HTML 4.01.

Specified by:
setTarget in interface org.w3c.dom.html2.HTMLAnchorElement

getType

public java.lang.String getType()
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
Advisory content type. See the type attribute definition in HTML 4.01.

Specified by:
getType in interface org.w3c.dom.html2.HTMLAnchorElement

setType

public void setType(java.lang.String type)
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
Advisory content type. See the type attribute definition in HTML 4.01.

Specified by:
setType in interface org.w3c.dom.html2.HTMLAnchorElement

blur

public void blur()
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
Removes keyboard focus from this element.

Specified by:
blur in interface org.w3c.dom.html2.HTMLAnchorElement

focus

public void focus()
Description copied from interface: org.w3c.dom.html2.HTMLAnchorElement
Gives keyboard focus to this element.

Specified by:
focus in interface org.w3c.dom.html2.HTMLAnchorElement