Interface PictureView
-
- All Known Implementing Classes:
PictureViewImpl
public interface PictureView
-
-
Field Summary
Fields Modifier and Type Field Description static String
FIELD_CONTENT
static String
FIELD_DESCRIPTION
static String
FIELD_FILENAME
static String
FIELD_HEIGHT
static String
FIELD_INFO
static String
FIELD_TAG
static String
FIELD_TITLE
static String
FIELD_WIDTH
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Map<String,Serializable>
asMap()
Convert thisPictureView
as a MAp to be stored inside a document.Blob
getBlob()
Returns theBlob
of the picture view.Blob
getContent()
Deprecated.since 7.2, usegetBlob()
insteadString
getDescription()
String
getFilename()
int
getHeight()
ImageInfo
getImageInfo()
Returns theImageInfo
of the picture view.String
getTag()
String
getTitle()
int
getWidth()
void
setBlob(Blob blob)
Sets theBlob
of this picture view.void
setDescription(String description)
void
setFilename(String filename)
void
setHeight(int height)
void
setImageInfo(ImageInfo info)
Sets theImageInfo
of the picture view.void
setTag(String tag)
void
setTitle(String title)
void
setWidth(int width)
-
-
-
Field Detail
-
FIELD_TITLE
static final String FIELD_TITLE
- See Also:
- Constant Field Values
-
FIELD_DESCRIPTION
static final String FIELD_DESCRIPTION
- See Also:
- Constant Field Values
-
FIELD_TAG
static final String FIELD_TAG
- See Also:
- Constant Field Values
-
FIELD_WIDTH
static final String FIELD_WIDTH
- See Also:
- Constant Field Values
-
FIELD_HEIGHT
static final String FIELD_HEIGHT
- See Also:
- Constant Field Values
-
FIELD_FILENAME
static final String FIELD_FILENAME
- See Also:
- Constant Field Values
-
FIELD_CONTENT
static final String FIELD_CONTENT
- See Also:
- Constant Field Values
-
FIELD_INFO
static final String FIELD_INFO
- See Also:
- Constant Field Values
-
-
Method Detail
-
getTitle
String getTitle()
-
setTitle
void setTitle(String title)
-
getTag
String getTag()
-
setTag
void setTag(String tag)
-
getDescription
String getDescription()
-
setDescription
void setDescription(String description)
-
getHeight
int getHeight()
-
setHeight
void setHeight(int height)
-
getWidth
int getWidth()
-
setWidth
void setWidth(int width)
-
getFilename
String getFilename()
-
setFilename
void setFilename(String filename)
-
getContent
@Deprecated Blob getContent()
Deprecated.since 7.2, usegetBlob()
insteadReturns theBlob
of the picture view.
-
getImageInfo
ImageInfo getImageInfo()
Returns theImageInfo
of the picture view.- Since:
- 7.1
-
setImageInfo
void setImageInfo(ImageInfo info)
Sets theImageInfo
of the picture view.- Since:
- 7.1
-
getBlob
Blob getBlob()
Returns theBlob
of the picture view.- Since:
- 5.7
-
setBlob
void setBlob(Blob blob)
Sets theBlob
of this picture view.- Since:
- 5.7
-
asMap
Map<String,Serializable> asMap()
Convert thisPictureView
as a MAp to be stored inside a document.- Since:
- 5.7
-
-