Class Tentative

java.lang.Object
   |
   +----javax.servlet.GenericServlet
           |
           +----javax.servlet.http.HttpServlet
                   |
                   +----Tentative

public class Tentative
extends HttpServlet
This servlet shows Tentative Assignments on the browser window and starts an applet in another window.


Constructor Index

 o Tentative()

Method Index

 o doGet(HttpServletRequest, HttpServletResponse)
Does all the work
 o init(ServletConfig)
Initialise the servlet

Constructors

 o Tentative
 public Tentative()

Methods

 o init
 public void init(ServletConfig config) throws ServletException
Initialise the servlet

Parameters:
config - ServletConfig
Overrides:
init in class GenericServlet
 o doGet
 public void doGet(HttpServletRequest req,
                   HttpServletResponse res) throws ServletException, IOException
Does all the work

Parameters:
req - HttpServletRequest
res - HttpServletResponse
Overrides:
doGet in class HttpServlet