echopoint.ui.jsp
Interface JspRenderingContext

All Superinterfaces:
ComponentMapper, ComponentPeerMapper
All Known Implementing Classes:
JspTemplateLayoutManagerUI

public interface JspRenderingContext
extends ComponentMapper, ComponentPeerMapper

This class is a context object that is padded to the JSP page in the request scope attribute called "echopoint..ui.jsp.JspRenderingContext". It contains information needed to access Echo component and peer information.


Field Summary
static java.lang.String JSPRENDERINGCONTEXT
          This is used as the request scope attribute name which holds this JspRenderingContext object.
 
Method Summary
 CompilationContext getCompilationContext()
          Returns the CompilationContext needed to render Echo output.
 RenderingContext getRenderingContext()
          Returns the RenderingContext needed to render Echo output.
 boolean getStylesApplied()
          Returns true of Styles have been applied during execution the JSP render.
 boolean isFinalOutputOccurring()
          Returns true if final output to the underlying JSP stream is occurring.
 void setStylesApplied(boolean stylesApplied)
          Sets whether styles have been applied during a JSP render
 
Methods inherited from interface echopoint.template.ComponentMapper
getComponent
 
Methods inherited from interface echopoint.ui.template.ComponentPeerMapper
getComponentPeer
 

Field Detail

JSPRENDERINGCONTEXT

static final java.lang.String JSPRENDERINGCONTEXT
This is used as the request scope attribute name which holds this JspRenderingContext object.

See Also:
Constant Field Values
Method Detail

getRenderingContext

RenderingContext getRenderingContext()
Returns the RenderingContext needed to render Echo output.


getCompilationContext

CompilationContext getCompilationContext()
Returns the CompilationContext needed to render Echo output.


isFinalOutputOccurring

boolean isFinalOutputOccurring()
Returns true if final output to the underlying JSP stream is occurring.


getStylesApplied

boolean getStylesApplied()
Returns true of Styles have been applied during execution the JSP render.


setStylesApplied

void setStylesApplied(boolean stylesApplied)
Sets whether styles have been applied during a JSP render

Parameters:
stylesApplied - true if they have been applied