|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.kuali.rice.krad.datadictionary.DictionaryBeanBase
org.kuali.rice.krad.datadictionary.uif.UifDictionaryBeanBase
org.kuali.rice.krad.uif.component.ComponentBase
org.kuali.rice.krad.uif.element.ContentElementBase
org.kuali.rice.krad.uif.element.Image
public class Image
Content element that renders a HTML <IMG>
tag
Field Summary |
---|
Fields inherited from class org.kuali.rice.krad.uif.component.ComponentBase |
---|
templateOptions |
Fields inherited from class org.kuali.rice.krad.datadictionary.DictionaryBeanBase |
---|
componentCode, namespaceCode |
Fields inherited from interface org.kuali.rice.krad.uif.component.Ordered |
---|
INITIAL_ORDER_VALUE |
Fields inherited from interface org.springframework.core.Ordered |
---|
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE |
Constructor Summary | |
---|---|
Image()
|
Method Summary | ||
---|---|---|
void |
completeValidation(ValidationTrace tracer)
Validates different requirements of component compiling a series of reports detailing information on errors found in the component. |
|
protected
|
copyProperties(T component)
Copies properties for copy() |
|
String |
getAltText()
Provides alternate information for the image element |
|
Header |
getCaptionHeader()
Retrieves the Header component used to display the caption for this image |
|
String |
getCaptionHeaderText()
Retrieves the caption text for this image |
|
List<Component> |
getComponentsForLifecycle()
List of components that are contained within the component and should be sent through the lifecycle |
|
Message |
getCutlineMessage()
Gets the Message component used to display the cutline. |
|
String |
getCutlineText()
Retrieves the cutline text for this image |
|
String |
getHeight()
Returns the height style attribute of this image |
|
String |
getSource()
returns the URL of this image |
|
String |
getWidth()
Returns the width style attribute of the image |
|
boolean |
isCaptionHeaderPlacementAboveImage()
Specifies whether the image caption is to be displayed above or below the image |
|
void |
performApplyModel(Object model,
Component parent)
Performs the following steps Set the caption header text on the caption header Set the cutline text on the cutline message |
|
void |
performInitialization(Object model)
The following initialization is performed: Initializes the cutline message and caption header components if necessary |
|
void |
setAltText(String altText)
Sets the alternate text property for this image |
|
void |
setCaptionHeader(Header captionHeader)
Sets the Header used to display the caption for this image |
|
void |
setCaptionHeaderPlacementAboveImage(boolean captionHeaderPlacementAboveImage)
Sets whether the image caption is to be displayed above or below the image |
|
void |
setCaptionHeaderText(String captionHeaderText)
Sets the text displayed as of the caption for the picture |
|
void |
setCutlineMessage(Message cutlineMessage)
Sets the Message component used to display the cutline for this image |
|
void |
setCutlineText(String cutlineText)
Sets the cutline text that describes this image |
|
void |
setHeight(String height)
Sets the height style attribute of the image. |
|
void |
setSource(String source)
Sets the URL of this image |
|
void |
setWidth(String width)
Sets the width style attribute of the image |
Methods inherited from class org.kuali.rice.krad.uif.element.ContentElementBase |
---|
getComponentTypeName |
Methods inherited from class org.kuali.rice.krad.datadictionary.uif.UifDictionaryBeanBase |
---|
getExpressionGraph, getPropertyExpression, getPropertyExpressions, getRefreshExpressionGraph, setExpressionGraph, setPropertyExpressions, setRefreshExpressionGraph |
Methods inherited from class org.kuali.rice.krad.datadictionary.DictionaryBeanBase |
---|
dataDictionaryPostProcessing, getComponentCode, getNamespaceCode, setComponentCode, setNamespaceCode |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.kuali.rice.krad.datadictionary.uif.UifDictionaryBean |
---|
getExpressionGraph, getPropertyExpression, getPropertyExpressions, getRefreshExpressionGraph, setExpressionGraph, setPropertyExpressions, setRefreshExpressionGraph |
Methods inherited from interface org.kuali.rice.krad.datadictionary.DictionaryBean |
---|
dataDictionaryPostProcessing, getComponentCode, getNamespaceCode |
Methods inherited from interface org.kuali.rice.krad.uif.util.LifecycleElement |
---|
checkMutable, copy, getId, initializePendingTasks, isMutable, performFinalize, setId |
Constructor Detail |
---|
public Image()
Method Detail |
---|
public void performInitialization(Object model)
performInitialization
in interface LifecycleElement
performInitialization
in class ComponentBase
model
- - object instance containing the view dataorg.kuali.rice.krad.uif.component.ComponentBase#performInitialization(org.kuali.rice.krad.uif.view.View,
java.lang.Object)
public void performApplyModel(Object model, Component parent)
performApplyModel
in interface LifecycleElement
performApplyModel
in class ComponentBase
model
- - Top level object containing the data (could be the form or a
top level business object, dto)Component#performFinalize(org.kuali.rice.krad.uif.view.View, java.lang.Object,
org.kuali.rice.krad.uif.component.Component)
public List<Component> getComponentsForLifecycle()
Component
Used by ViewHelperService
for the various lifecycle callbacks
getComponentsForLifecycle
in interface Component
getComponentsForLifecycle
in class ComponentBase
ComponentBase.getComponentsForLifecycle()
public String getSource()
public void setSource(String source)
source
- the URL of this imagepublic String getAltText()
The altText property specifies an alternate text for an image. It is displayed by the browser
if the image cannot be displayed. This is especially important for accessibility, because screen
readers can't understand images, but rather will read aloud the alternative text assigned to them.
Some best practices:
public void setAltText(String altText)
altText
- the alternative information about the imagepublic String getHeight()
The default unit of measure is pixels.
It is good practice to specify both the height and width attributes for an image.
If these attributes are set, the space required for the image is reserved when the page is loaded.
However, without these attributes, the browser does not know the size of the image. The effect will
be that the page layout will change while the images load.
public void setHeight(String height)
height
- the height of the imagepublic String getWidth()
The default unit of measure is pixels.
It is good practice to specify both the height and width attributes for an image.
If these attributes are set, the space required for the image is reserved when the page is loaded.
However, without these attributes, the browser does not know the size of the image. The effect will
be that the page layout will change while the images load.
getWidth
in interface Component
getWidth
in class ComponentBase
Component.getWidth()
public void setWidth(String width)
setWidth
in interface Component
setWidth
in class ComponentBase
width
- the width of this imageComponent.setWidth(java.lang.String)
public String getCaptionHeaderText()
The caption text is a headline for the picture. It may be displayed either above or below the picture.
public void setCaptionHeaderText(String captionHeaderText)
captionHeaderText
- the caption textpublic Header getCaptionHeader()
Header
component used to display the caption for this image
public void setCaptionHeader(Header captionHeader)
captionHeader
- header component which wraps the caption textpublic String getCutlineText()
The cutline text give more detailed information about the picture. Generally it describes the who, what, where, when of this image.
public void setCutlineText(String cutlineText)
cutlineText
- the cutline text that describes this imagepublic Message getCutlineMessage()
Message
component used to display the cutline.
Wrapping the cutline text with a Message component allows styling of the cutline text.
public void setCutlineMessage(Message cutlineMessage)
cutlineMessage
- Messagepublic boolean isCaptionHeaderPlacementAboveImage()
public void setCaptionHeaderPlacementAboveImage(boolean captionHeaderPlacementAboveImage)
captionHeaderPlacementAboveImage
- true displays above image, false displays below imageprotected <T> void copyProperties(T component)
DictionaryBeanBase
copyProperties
in class ComponentBase
component
- base beanDictionaryBeanBase.copyProperties(Object)
public void completeValidation(ValidationTrace tracer)
Component
completeValidation
in interface Component
completeValidation
in class ComponentBase
tracer
- Record of component's locationComponent.completeValidation(org.kuali.rice.krad.datadictionary.validator.ValidationTrace)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |