Class Area

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Cloneable, org.jdom2.NamespaceAware, org.jdom2.Parent

    @ProviderType
    public final class Area
    extends HtmlElement
    Html area element.
    See Also:
    Serialized Form
    • Constructor Detail

      • Area

        public Area()
        Initializes html element.
    • Method Detail

      • getRel

        public java.lang.String getRel()
        Html "rel" attribute.
        Returns:
        Value of attribute
      • setRel

        public Area setRel​(java.lang.String value)
        Html "rel" attribute.
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • getHRef

        public java.lang.String getHRef()
        Html "href" attribute.
        Returns:
        Value of attribute
      • setHRef

        public Area setHRef​(java.lang.String value)
        Html "href" attribute.
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • getTarget

        public java.lang.String getTarget()
        Html "target" attribute.
        Returns:
        Value of attribute
      • setTarget

        public Area setTarget​(java.lang.String value)
        Html "target" attribute.
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • getTabIndex

        public int getTabIndex()
        Html "tabindex" attribute.
        Returns:
        Value of attribute
      • setTabIndex

        public Area setTabIndex​(int value)
        Html "tabindex" attribute.
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • getAccessKey

        public java.lang.String getAccessKey()
        Html "accesskey" attribute.
        Returns:
        Value of attribute
      • setAccessKey

        public Area setAccessKey​(java.lang.String value)
        Html "accesskey" attribute.
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • getAlt

        public java.lang.String getAlt()
        Html "alt" attribute.
        Returns:
        Value of attribute
      • setAlt

        public Area setAlt​(java.lang.String value)
        Html "alt" attribute.
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • getShape

        public java.lang.String getShape()
        Html "shape" attribute.
        Returns:
        Value of attribute
      • setShape

        public Area setShape​(java.lang.String value)
        Html "shape" attribute.
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • getCoords

        public java.lang.String getCoords()
        Html "coords" attribute.
        Returns:
        Value of attribute
      • setCoords

        public Area setCoords​(java.lang.String value)
        Html "coords" attribute.
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • setEmptyAttributeValueAsBoolean

        protected Area setEmptyAttributeValueAsBoolean​(java.lang.String attributeName,
                                                       boolean value)
        Description copied from class: HtmlElement
        Sets "empty" attribute value as boolean (i.e. for "checked" attribute).
        Overrides:
        setEmptyAttributeValueAsBoolean in class HtmlElement
        Parameters:
        attributeName - Attribute name
        value - Attribute value as boolean
        Returns:
        Self reference
      • setId

        public Area setId​(java.lang.String value)
        Description copied from class: HtmlElement
        Html "id" attribute.
        Overrides:
        setId in class HtmlElement
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • setCssClass

        public Area setCssClass​(java.lang.String value)
        Description copied from class: HtmlElement
        Sets Html "class" attribute - unless you're really sure that you want to replace existing classes, you probably should call HtmlElement.addCssClass(String) instead.
        Overrides:
        setCssClass in class HtmlElement
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • addCssClass

        public Area addCssClass​(java.lang.String value)
        Description copied from class: HtmlElement
        Html "class" attribute. Adds a single, space-separated value while preserving existing ones.
        Overrides:
        addCssClass in class HtmlElement
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • setStyleString

        public Area setStyleString​(java.lang.String value)
        Description copied from class: HtmlElement
        Html "style" attribute.
        Overrides:
        setStyleString in class HtmlElement
        Parameters:
        value - Value of attribute with style key/value pairs
        Returns:
        Self reference
      • setStyle

        public Area setStyle​(java.lang.String styleAttribute,
                             java.lang.String styleValue)
        Description copied from class: HtmlElement
        Html "style" attribute. Sets single style attribute value.
        Overrides:
        setStyle in class HtmlElement
        Parameters:
        styleAttribute - Style attribute name
        styleValue - Style attribute value
        Returns:
        Self reference
      • setTitle

        public Area setTitle​(java.lang.String value)
        Description copied from class: HtmlElement
        Html "title" attribute.
        Overrides:
        setTitle in class HtmlElement
        Parameters:
        value - Value of attribute
        Returns:
        Self reference
      • setData

        public Area setData​(java.lang.String attributeName,
                            java.lang.String value)
        Description copied from class: HtmlElement
        Custom Html5 "data-*" attribute.
        Overrides:
        setData in class HtmlElement
        Parameters:
        attributeName - Name of HTML5 data attribute (without the 'data-' prefix).
        value - Value of attribute
        Returns:
        Self reference
      • setAttributeValueAsLong

        public Area setAttributeValueAsLong​(java.lang.String name,
                                            long value)
        Description copied from class: AbstractElement
        Sets attribute value as long.
        Overrides:
        setAttributeValueAsLong in class AbstractElement
        Parameters:
        name - Attribute name
        value - Attribute value as long
        Returns:
        Self reference
      • setText

        public Area setText​(java.lang.String text)
        Description copied from class: AbstractElement
        Sets the content of the element to be the text given. All existing text content and non-text context is removed. If this element should have both textual content and nested elements, use Element.setContent(java.util.Collection<? extends org.jdom2.Content>) instead. Setting a null text value is equivalent to setting an empty string value.
        Overrides:
        setText in class AbstractElement
        Parameters:
        text - new text content for the element
        Returns:
        the target element