Package com.rometools.modules.content
Interface ContentModule
-
- All Superinterfaces:
Cloneable,CopyFrom,Module,Serializable
- All Known Implementing Classes:
ContentModuleImpl
public interface ContentModule extends Module
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ContentItem>getContentItems()Contains a list of ContentItems that represent the "Original Syntax" set.List<String>getContents()Returns a List of Strings containing whatever new or original syntax items are in the element.List<String>getEncodeds()Returns a List of Strings containing the New Syntax Encoded values are in the element.StringgetUri()voidsetContentItems(List<ContentItem> list)Contains a list of ContentItems that represent the "Original Syntax" set.voidsetContents(List<String> contents)Sets a List of Strings containing whatever new or original syntax items are in the element.voidsetEncodeds(List<String> encodeds)Sets a List of Strings containing the New Syntax Encoded values are in the element.StringtoString(String str)-
Methods inherited from interface com.rometools.rome.feed.CopyFrom
copyFrom, getInterface
-
-
-
-
Field Detail
-
URI
static final String URI
- See Also:
- Constant Field Values
-
RDF_URI
static final String RDF_URI
- See Also:
- Constant Field Values
-
-
Method Detail
-
getEncodeds
List<String> getEncodeds()
Returns a List of Strings containing the New Syntax Encoded values are in the element.- Returns:
- List of content Strings
-
setEncodeds
void setEncodeds(List<String> encodeds)
Sets a List of Strings containing the New Syntax Encoded values are in the element.
-
getContentItems
List<ContentItem> getContentItems()
Contains a list of ContentItems that represent the "Original Syntax" set.- Returns:
- List of ContentItems.
- See Also:
com.totsp.xml.syndication.content.ContentItem
-
setContentItems
void setContentItems(List<ContentItem> list)
Contains a list of ContentItems that represent the "Original Syntax" set.- Parameters:
List- of ContentItems.- See Also:
com.totsp.xml.syndication.content.ContentItem
-
getContents
List<String> getContents()
Returns a List of Strings containing whatever new or original syntax items are in the element.- Returns:
- List of content Strings
-
-