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 / JspEngineInfo.java < prev    next >
Encoding:
Java Source  |  2000-04-03  |  1.1 KB  |  36 lines

  1. /*
  2.  * JspEngineInfo.java
  3.  * 
  4.  * Copyright (c) 1999 by Free Software Foundation, Inc.
  5.  * Written by Wes Biggs (wes@cacas.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. public abstract class JspEngineInfo {
  24.  
  25.     /**
  26.      * default constructor
  27.      */
  28.     public JspEngineInfo() {
  29.     }
  30.  
  31.     /**
  32.      * Returns the implementation version of the JSP engine.
  33.      */
  34.     public abstract String getImplementationVersion();
  35. }
  36.