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.
-
Tentative()
-
-
doGet(HttpServletRequest, HttpServletResponse)
- Does all the work
-
init(ServletConfig)
- Initialise the servlet
Tentative
public Tentative()
init
public void init(ServletConfig config) throws ServletException
- Initialise the servlet
- Parameters:
- config - ServletConfig
- Overrides:
- init in class GenericServlet
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