Class Hierarchy All Classes All Fields and Methods

 

Class com.ibm.faces.renderkit.html_extended.ImageExRenderer

java.lang.Object
        javax.faces.render.Renderer
                com.sun.faces.renderkit.html_basic.HtmlBasicRenderer
                        com.ibm.faces.renderkit.html_extended.ImageExRenderer

public class ImageExRenderer
extends HtmlBasicRenderer

Renderer for UIGraphic component, that creates an image.

This renderer is based on the standard Image renderer and extends it to support binding to a data source and different image types.

Tags:
Components: UIGraphic

Constructor Index
Constructor Description
ImageExRenderer()  

Method Index
Method Description
void encodeBegin(FacesContext, UIComponent) Renders the beginning of the component.
void encodeChildren(FacesContext, UIComponent) Renders component's children.
void encodeEnd(FacesContext, UIComponent) Renders the ending of the component.

 

Constructors

 

ImageExRenderer

public ImageExRenderer() 

 

Methods

 

encodeBegin

public void encodeBegin(FacesContext context,
                        UIComponent component) throws IOException

Renders the beginning of the component.

Doesn't need to do anything; all processing is done in encodeEnd.

 

encodeChildren

public void encodeChildren(FacesContext context,
                           UIComponent component) 

Renders component's children.

Doesn't need to do anything, all processing is done in encodeEnd.

 

encodeEnd

public void encodeEnd(FacesContext context,
                      UIComponent component) throws IOException

Renders the ending of the component.

Renders the entire component.

Creates an IMG tag.

Class Hierarchy All Classes All Fields and Methods