Package com.rometools.rome.feed.synd
Interface SyndPerson
-
- All Superinterfaces:
Cloneable,Extendable
- All Known Implementing Classes:
Person,SyndPersonImpl
public interface SyndPerson extends Cloneable, Extendable
Bean interface for authors and contributors of SyndFeedImpl feeds and entries.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Objectclone()Creates a deep clone of the object.StringgetEmail()Returns email of person.StringgetName()Returns name of personStringgetUri()Returns URI of person.voidsetEmail(String email)Sets email of person.voidsetName(String name)Sets name of person.voidsetUri(String uri)Sets URI of person.-
Methods inherited from interface com.rometools.rome.feed.module.Extendable
getModule, getModules, setModules
-
-
-
-
Method Detail
-
getName
String getName()
Returns name of person
-
setName
void setName(String name)
Sets name of person.
-
getUri
String getUri()
Returns URI of person.
-
setUri
void setUri(String uri)
Sets URI of person.
-
getEmail
String getEmail()
Returns email of person.
-
setEmail
void setEmail(String email)
Sets email of person.
-
clone
Object clone() throws CloneNotSupportedException
Creates a deep clone of the object.- Returns:
- a clone of the object.
- Throws:
CloneNotSupportedException- thrown if an element of the object cannot be cloned.
-
-