Package org.apache.abdera.model
Interface Div
-
- All Superinterfaces:
Base
,java.lang.Cloneable
,Element
,ExtensibleElement
,java.lang.Iterable<Element>
@Deprecated(since="2021-07-29") public interface Div extends ExtensibleElement
Deprecated.This API is deprecated as Apache Abdera is a retired project since 2017.Represents an XHTML div tag.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.String
getId()
Deprecated.Returns the value of the div element's id attributejava.lang.String
getTitle()
Deprecated.Returns the value of the div element's title attributejava.lang.String
getValue()
Deprecated.Returns the value of the div elementjava.lang.String[]
getXhtmlClass()
Deprecated.Returns the array of class attribute values on the divDiv
setId(java.lang.String id)
Deprecated.Sets the value of the div element's id attributeDiv
setTitle(java.lang.String title)
Deprecated.Set the value of the div element's title attributevoid
setValue(java.lang.String value)
Deprecated.Set the value of the div elementDiv
setXhtmlClass(java.lang.String[] classes)
Deprecated.Sets the array of class attribute values on the div-
Methods inherited from interface org.apache.abdera.model.Base
addComment, clone, complete, getDefaultWriterOptions, getFactory, writeTo, writeTo, writeTo, writeTo, writeTo, writeTo, writeTo, writeTo, writeTo, writeTo, writeTo, writeTo
-
Methods inherited from interface org.apache.abdera.model.Element
declareNS, discard, getAttributes, getAttributeValue, getAttributeValue, getBaseUri, getDocument, getElements, getExtensionAttributes, getFirstChild, getFirstChild, getLanguage, getLanguageTag, getLocale, getMustPreserveWhitespace, getNamespaces, getNextSibling, getNextSibling, getParentElement, getPreviousSibling, getPreviousSibling, getQName, getResolvedBaseUri, getText, removeAttribute, removeAttribute, setAttributeValue, setAttributeValue, setBaseUri, setBaseUri, setLanguage, setMustPreserveWhitespace, setParentElement, setText, setText
-
Methods inherited from interface org.apache.abdera.model.ExtensibleElement
addExtension, addExtension, addExtension, addExtension, addExtension, addSimpleExtension, addSimpleExtension, getExtension, getExtension, getExtensions, getExtensions, getExtensions, getSimpleExtension, getSimpleExtension
-
-
-
-
Method Detail
-
getXhtmlClass
java.lang.String[] getXhtmlClass()
Deprecated.Returns the array of class attribute values on the div- Returns:
- A listing of class attribute values
-
getId
java.lang.String getId()
Deprecated.Returns the value of the div element's id attribute- Returns:
- The value of the id attribute
-
getTitle
java.lang.String getTitle()
Deprecated.Returns the value of the div element's title attribute- Returns:
- The value of the title attribute
-
setId
Div setId(java.lang.String id)
Deprecated.Sets the value of the div element's id attribute- Parameters:
id
- The value of the id attribute
-
setTitle
Div setTitle(java.lang.String title)
Deprecated.Set the value of the div element's title attribute- Parameters:
title
- The value of the title attribute
-
setXhtmlClass
Div setXhtmlClass(java.lang.String[] classes)
Deprecated.Sets the array of class attribute values on the div- Parameters:
classes
- A listing of class attribute values
-
getValue
java.lang.String getValue()
Deprecated.Returns the value of the div element- Returns:
- The value of the div element
-
setValue
void setValue(java.lang.String value)
Deprecated.Set the value of the div element- Parameters:
value
- The text value
-
-