Package com.rometools.modules.photocast
Interface PhotocastModule
-
- All Superinterfaces:
Cloneable,CopyFrom,Module,Serializable
- All Known Implementing Classes:
PhotocastModuleImpl
public interface PhotocastModule extends Module
This is a ROME module that provides support for the "http://www.apple.com/ilife/wallpapers" namespace. See the package information for example usage.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DategetCropDate()Returns the cropDate value from the item level.URLgetImageUrl()The URL of the image.MetadatagetMetadata()The iPhoto metadata for the image.DategetPhotoDate()Returns the Item level photoDate value.URLgetThumbnailUrl()The URL of the image thumbnail.voidsetCropDate(Date cropDate)Sets the cropDate value for the item level.voidsetImageUrl(URL imageUrl)The URL of the image.voidsetMetadata(Metadata metadata)The iPhoto metadata for the image.voidsetPhotoDate(Date photoDate)Set the Item level photoDate value.voidsetThumbnailUrl(URL thumbnailUrl)The URL of the image thumbnail.-
Methods inherited from interface com.rometools.rome.feed.CopyFrom
copyFrom, getInterface
-
-
-
-
Field Detail
-
URI
static final String URI
The URI of the namespace. ("http://www.apple.com/ilife/wallpapers")- See Also:
- Constant Field Values
-
-
Method Detail
-
getPhotoDate
Date getPhotoDate()
Returns the Item level photoDate value.- Returns:
- Returns the Item level photoDate value.
-
setPhotoDate
void setPhotoDate(Date photoDate)
Set the Item level photoDate value.- Parameters:
photoDate- Item level photoDate value
-
getCropDate
Date getCropDate()
Returns the cropDate value from the item level.- Returns:
- Item level cropDate value
-
setCropDate
void setCropDate(Date cropDate)
Sets the cropDate value for the item level.- Parameters:
cropDate- cropDate value for the item level
-
getImageUrl
URL getImageUrl()
The URL of the image.- Returns:
- The URL of the image.
-
setImageUrl
void setImageUrl(URL imageUrl)
The URL of the image.- Parameters:
imageUrl- The URL of the image.
-
getThumbnailUrl
URL getThumbnailUrl()
The URL of the image thumbnail.- Returns:
- The URL of the image thumbnail.
-
setThumbnailUrl
void setThumbnailUrl(URL thumbnailUrl)
The URL of the image thumbnail.- Parameters:
thumbnailUrl- The URL of the image thumbnail.
-
getMetadata
Metadata getMetadata()
The iPhoto metadata for the image.- Returns:
- The iPhoto metadata for the image.
-
setMetadata
void setMetadata(Metadata metadata)
The iPhoto metadata for the image.- Parameters:
metadata- The iPhoto metadata for the image.
-
-