Class GXJspIncludeTag

java.lang.Object
BodyTagSupport
com.sabratec.j2ee.framework.web.tags.GXAbstractTag
com.sabratec.j2ee.framework.web.tags.GXJspIncludeTag
All Implemented Interfaces:
Serializable

public class GXJspIncludeTag extends GXAbstractTag
This class is the root of a JSP Include file and the tag that initializes and activates the JSP Include context class.
Syntax:
<gx:include gx_context="<CONTEXT CLASS>">

...
<img src=...

...
</gx:include>

This class throws the following events in the context class:
  • gx_onLoad - informs about the Load event of the Include file - com.sabratec.j2ee.framework.web.GXIWebPageContext#gx_onLoad()
  • gx_preRender - informs before the HTML of the Include file is rendered - com.sabratec.j2ee.framework.web.GXIWebPageContext#gx_preRender()
  • gx_onUnload - informs of the Unload event (for cleanup) - com.sabratec.j2ee.framework.web.GXIWebPageContext#gx_onUnload()
  • gx_onError - Used for error handling - {@link com.sabratec.j2ee.framework.web.GXIWebPageContext#gx_onError(RuntimeException)()}
See Also: