Interface ImageContent
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
ImageContentImpl
public interface ImageContent extends java.io.SerializableThe Interface ImageContent.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClippingsgetClippings()ClippingsGets the clippings.java.lang.StringgetEmbedded()Gets the embedded.java.lang.StringgetEmbeddedFormat()Gets the embedded format.java.lang.StringgetPath()Gets the path.PositiongetPos()PositionGets the pos.java.lang.StringgetRelativePath()Gets the relative path.TransformgetTransform()TransformGets the transform.voidsetClippings(Clippings clippings)ClippingsSets the clippings.voidsetEmbedded(java.lang.String embedded)Sets the embedded.voidsetEmbeddedFormat(java.lang.String embeddedFormat)Sets the embedded format.voidsetPath(java.lang.String path)Sets the path.voidsetPos(Position pos)PositionSets the pos.voidsetRelativePath(java.lang.String relativePath)Sets the relative path.voidsetTransform(Transform transform)TransformSets the transform.
-
-
-
Method Detail
-
getPath
java.lang.String getPath()
Gets the path.- Returns:
- the path
-
setPath
void setPath(java.lang.String path)
Sets the path.- Parameters:
path- the new path
-
setPos
void setPos(Position pos)
PositionSets the pos.- Parameters:
pos- the new pos- See Also:
Position
-
getTransform
Transform getTransform()
TransformGets the transform.- Returns:
- the transform
- See Also:
Transform
-
setTransform
void setTransform(Transform transform)
TransformSets the transform.- Parameters:
transform- the new transform- See Also:
Transform
-
setClippings
void setClippings(Clippings clippings)
ClippingsSets the clippings.- Parameters:
clippings- the new clippings- See Also:
Clippings
-
getClippings
Clippings getClippings()
ClippingsGets the clippings.- Returns:
- the clippings
- See Also:
Clippings
-
setRelativePath
void setRelativePath(java.lang.String relativePath)
Sets the relative path.- Parameters:
relativePath- the new relative path
-
getRelativePath
java.lang.String getRelativePath()
Gets the relative path.- Returns:
- the relative path
-
setEmbeddedFormat
void setEmbeddedFormat(java.lang.String embeddedFormat)
Sets the embedded format.- Parameters:
embeddedFormat- the new embedded format
-
getEmbeddedFormat
java.lang.String getEmbeddedFormat()
Gets the embedded format.- Returns:
- the embedded format
-
setEmbedded
void setEmbedded(java.lang.String embedded)
Sets the embedded.- Parameters:
embedded- the new embedded
-
getEmbedded
java.lang.String getEmbedded()
Gets the embedded.- Returns:
- the embedded
-
-