EchoPoint
1.0

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.
 nextapp.echoservlet.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

public 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

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


getCompilationContext

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


isFinalOutputOccurring

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


getStylesApplied

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


setStylesApplied

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

Parameters:
stylesApplied - true if they have been applied

EchoPoint
1.0