| java.lang.Object com.sun.syndication.feed.module.ModuleImpl
All known Subclasses: com.sun.syndication.feed.module.DCModuleImpl, com.sun.syndication.feed.module.SyModuleImpl,
ModuleImpl | abstract public class ModuleImpl implements Cloneable,Serializable,Module(Code) | | Base class for modules describing Metadata of feeds, default implementations.
Examples of such modules are the Dublin Core and Syndication modules.
author: Alejandro Abdelnur |
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 | getUri() Returns the URI of the module. | public int | hashCode() Returns a hashcode value for the object. | public String | toString() Returns the String representation for the object. |
ModuleImpl | protected ModuleImpl(Class beanClass, String uri)(Code) | | Constructor.
Parameters: uri - URI of the module. |
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. |
getUri | public String getUri()(Code) | | Returns the URI of the module.
URI of the module. |
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. |
toString | public String toString()(Code) | | Returns the String representation for the object.
String representation for the object. |
|
|