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

Quick Search    Search Deep

com.sun.syndication.feed.synd
Interface SyndContent  view SyndContent download SyndContent.java

All Superinterfaces:
java.lang.Cloneable, com.sun.syndication.feed.CopyFrom
All Known Implementing Classes:
SyndContentImpl

public interface SyndContent
extends java.lang.Cloneable, com.sun.syndication.feed.CopyFrom

Bean interface for content of SyndFeedImpl entries.


Method Summary
 java.lang.Object clone()
          Creates a deep clone of the object.
 java.lang.String getType()
          Returns the content type.
 java.lang.String getValue()
          Returns the content value.
 void setType(java.lang.String type)
          Sets the content type.
 void setValue(java.lang.String value)
          Sets the content value.
 
Methods inherited from interface com.sun.syndication.feed.CopyFrom
copyFrom, getInterface
 

Method Detail

getType

public java.lang.String getType()
Returns the content type.

When used for the description of an entry, if null 'text/plain' must be assumed.


setType

public void setType(java.lang.String type)
Sets the content type.

When used for the description of an entry, if null 'text/plain' must be assumed.


getValue

public java.lang.String getValue()
Returns the content value.


setValue

public void setValue(java.lang.String value)
Sets the content value.


clone

public java.lang.Object clone()
                       throws java.lang.CloneNotSupportedException
Creates a deep clone of the object.