home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 2000 November / APCD25112k.iso / feature / webserv / SAMBAR43.ZIP / _SETUP.1 / javaeng.jar / javax / servlet / jsp / JspPage.java < prev    next >
Encoding:
Java Source  |  2000-04-03  |  1.0 KB  |  41 lines

  1. /*
  2.  * JspPage.java -- XXX
  3.  *
  4.  * Copyright (c) 1999 by Free Software Foundation, Inc.
  5.  * Written by Mark Wielaard (mark@klomp.org)
  6.  *
  7.  * This program is free software; you can redistribute it and/or modify
  8.  * it under the terms of the GNU Library General Public License as published
  9.  * by the Free Software Foundation, version 2. (see COPYING.LIB)
  10.  *
  11.  * This program is distributed in the hope that it will be useful, but
  12.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software Foundation
  18.  * Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307 USA
  19.  */
  20.  
  21. package javax.servlet.jsp;
  22.  
  23. import javax.servlet.Servlet;
  24.  
  25. /**
  26.  * XXX
  27.  */
  28. public interface JspPage extends Servlet {
  29.     
  30.     /**
  31.      * XXX
  32.      */
  33.     void jspInit();
  34.     
  35.     /**
  36.      * XXX
  37.      */
  38.     void jspDestroy();
  39.  
  40. }
  41.