| java.lang.Object com.sun.syndication.feed.synd.SyndCategoryImpl
SyndCategoryImpl | public class SyndCategoryImpl implements Serializable,SyndCategory(Code) | | Bean for categories of SyndFeedImpl feeds and entries.
author: Alejandro Abdelnur |
Constructor Summary | |
| SyndCategoryImpl(DCSubject subject) For implementations extending SyndContentImpl to be able to use the ObjectBean functionality
with extended interfaces. | public | SyndCategoryImpl() Default constructor. |
Method Summary | |
public Object | clone() Creates a deep 'bean' clone of the object. | public boolean | equals(Object other) Indicates whether some other object is "equal to" this one as defined by the Object equals() method.
Parameters: other - he reference object with which to compare. | public String | getName() Returns the category name. | DCSubject | getSubject() Package private constructor, used by SyndCategoryListFacade. | public String | getTaxonomyUri() Returns the category taxonomy URI. | public int | hashCode() Returns a hashcode value for the object. | public void | setName(String name) Sets the category name. | public void | setTaxonomyUri(String taxonomyUri) Sets the category taxonomy URI. | public String | toString() Returns the String representation for the object. |
SyndCategoryImpl | SyndCategoryImpl(DCSubject subject)(Code) | | For implementations extending SyndContentImpl to be able to use the ObjectBean functionality
with extended interfaces.
Parameters: subject - the DC subject to wrap. |
SyndCategoryImpl | public SyndCategoryImpl()(Code) | | Default constructor. All properties are set to null.
|
equals | public boolean equals(Object other)(Code) | | Indicates whether some other object is "equal to" this one as defined by the Object equals() method.
Parameters: other - he reference object with which to compare. true if 'this' object is equal to the 'other' object. |
getName | public String getName()(Code) | | Returns the category name.
the category name, null if none. |
getSubject | DCSubject getSubject()(Code) | | Package private constructor, used by SyndCategoryListFacade.
the DC subject being wrapped. |
getTaxonomyUri | public String getTaxonomyUri()(Code) | | Returns the category taxonomy URI.
the category taxonomy URI, null if none. |
hashCode | public int hashCode()(Code) | | Returns a hashcode value for the object.
It follows the contract defined by the Object hashCode() method.
the hashcode of the bean object. |
setName | public void setName(String name)(Code) | | Sets the category name.
Parameters: name - the category name to set, null if none. |
setTaxonomyUri | public void setTaxonomyUri(String taxonomyUri)(Code) | | Sets the category taxonomy URI.
Parameters: taxonomyUri - the category taxonomy URI to set, null if none. |
toString | public String toString()(Code) | | Returns the String representation for the object.
String representation for the object. |
|
|