com.atlassian.confluence.xhtml.api
Interface EmbeddedImage

All Superinterfaces:
StandardTag
All Known Implementing Classes:
DefaultEmbeddedImage

public interface EmbeddedImage
extends StandardTag

Represents an embedded resource.


Method Summary
 java.lang.String getAlignment()
           
 java.lang.String getAlternativeText()
           
 java.lang.String getExtraQueryParameters()
           
 java.lang.String getHeight()
           
 java.lang.String getHspace()
           
 java.lang.String getMimeType()
           
 ResourceIdentifier getResourceIdentifier()
           
 java.lang.String getSource()
           
 java.lang.String getVspace()
           
 java.lang.String getWidth()
           
 boolean isBorder()
           
 boolean isThumbnail()
           
 
Methods inherited from interface com.atlassian.confluence.xhtml.api.StandardTag
getHtmlClass, getId, getStyle, getTitle
 

Method Detail

getResourceIdentifier

ResourceIdentifier getResourceIdentifier()

getMimeType

java.lang.String getMimeType()

getSource

java.lang.String getSource()
Returns:
the url for the source of the image. This only applies to external embedded images so may be null if the image is a Confluence attachment.

getAlternativeText

java.lang.String getAlternativeText()
Returns:
An alternate text for an image

getHeight

java.lang.String getHeight()
Returns:
the height of the image either in pixels or percent. e.g. may be purely numeric, or something like nnpx or nn%

getWidth

java.lang.String getWidth()
Returns:
the width of the image either in pixels or percent. e.g. may be purely numeric, or something like nnpx or nn%

isThumbnail

boolean isThumbnail()
Returns:
true if the image should be shown as a thumbnail.

isBorder

boolean isBorder()
Returns:
true if the image should have a border

getAlignment

java.lang.String getAlignment()
Returns:
the value for the alignment of the image - none, center, left or right

getHspace

java.lang.String getHspace()
Returns:
the amount of whitespace to be inserted to the left and right of the image (in pixels)

getVspace

java.lang.String getVspace()
Returns:
the amount of whitespace to be inserted above and below the image (in pixels)

getExtraQueryParameters

java.lang.String getExtraQueryParameters()
Returns:
any extra query parameters added by the client. Could potentially be used for servlet filters.


Copyright © 2003-2014 Atlassian. All Rights Reserved.