Package io.guise.framework.model
Interface ImageModel
-
- All Superinterfaces:
Model
,com.globalmentor.beans.PropertyBindable
,com.globalmentor.beans.PropertyConstrainable
- All Known Subinterfaces:
ImageComponent
,PendingImageComponent
,PendingImageModel
- All Known Implementing Classes:
AbstractImageComponent
,CachedImageModel
,DefaultImageModel
,Image
,ImageActionControl
,ImageBooleanSelectActionControl
,PendingImage
,PendingImageActionControl
,Picture
public interface ImageModel extends Model
A model for an image.- Author:
- Garret Wilson
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
IMAGE_URI_PROPERTY
The image URI bound property.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.net.URI
getImageURI()
void
setImageURI(java.net.URI newImageURI)
Sets the URI of the image.
-
-
-
Method Detail
-
getImageURI
java.net.URI getImageURI()
- Returns:
- The image URI, which may be a resource URI, or
null
if there is no image URI.
-
setImageURI
void setImageURI(java.net.URI newImageURI)
Sets the URI of the image. This is a bound property.- Parameters:
newImageURI
- The new URI of the image, which may be a resource URI.- See Also:
IMAGE_URI_PROPERTY
-
-