home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Pro 1999 April
/
DPPCPRO0499.ISO
/
April
/
Notes
/
50b2wic.exe
/
DATA1.CAB
/
NotesProgramFilesJavaSupport
/
icsclass.jar
/
javax
/
servlet
/
Servlet.class
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
1998-11-15
|
531 b
|
16 lines
package javax.servlet;
import java.io.IOException;
public interface Servlet {
void init(ServletConfig var1) throws ServletException;
ServletConfig getServletConfig();
void service(ServletRequest var1, ServletResponse var2) throws ServletException, IOException;
String getServletInfo();
void destroy();
}