JSPTemplates

org.tp23.jasper.runtime
Class ObjectJspBase

java.lang.Object
  |
  +--org.tp23.jasper.runtime.ObjectJspBase
All Implemented Interfaces:
JspBase

public abstract class ObjectJspBase
extends java.lang.Object
implements JspBase

This is the superclass of all JSP-generated classes. It has been copied from HttpJspBase and is similar to HttpJspPage.

Author:
Anil K. Vijendran, Paul Hinds

Constructor Summary
protected ObjectJspBase()
           
 
Method Summary
abstract  void _jspService(Destination destination)
           
 void destroy()
           
 java.lang.ClassLoader getClassLoader()
           
 void jspDestroy()
           
 void jspInit()
           
 void service(Destination destination)
          The main entry point into a JSP.
 void setClassLoader(java.lang.ClassLoader cl)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ObjectJspBase

protected ObjectJspBase()
Method Detail

destroy

public final void destroy()
Specified by:
destroy in interface JspBase

setClassLoader

public final void setClassLoader(java.lang.ClassLoader cl)
Specified by:
setClassLoader in interface JspBase

getClassLoader

public java.lang.ClassLoader getClassLoader()
Specified by:
getClassLoader in interface JspBase

service

public final void service(Destination destination)
                   throws java.io.IOException,
                          JspEngineException
The main entry point into a JSP. Consider this to be service(request,response)
Specified by:
service in interface JspBase

jspInit

public void jspInit()
Specified by:
jspInit in interface JspBase

jspDestroy

public void jspDestroy()
Specified by:
jspDestroy in interface JspBase

_jspService

public abstract void _jspService(Destination destination)
                          throws java.io.IOException,
                                 JspEngineException
Specified by:
_jspService in interface JspBase

JSPTemplates