Package org.apache.abdera.model
Interface Attribute
-
@Deprecated(since="2021-07-29") public interface Attribute
Deprecated.This API is deprecated as Apache Abdera is a retired project since 2017.An attribute. Returned by the Abdera XPath implementation when querying for Attribute nodes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description FactorygetFactory()Deprecated.The Abdera FactoryQNamegetQName()Deprecated.Get the QName of the attributeStringgetText()Deprecated.Return the text value of the attributeAttributesetText(String text)Deprecated.Set the text value of the attribute.
-
-
-
Method Detail
-
getQName
QName getQName()
Deprecated.Get the QName of the attribute- Returns:
- The attribute QName
-
getText
String getText()
Deprecated.Return the text value of the attribute- Returns:
- The attribute value
-
setText
Attribute setText(String text)
Deprecated.Set the text value of the attribute. The value will be automatically escaped for proper serialization to XML- Parameters:
text- The attribute value
-
getFactory
Factory getFactory()
Deprecated.The Abdera Factory
-
-