Komplettes G-Earth Paket inkl. JRE, Extensions und Tools. Extensions: - G-BuildTools, G-Click Ultimate, G-Loader, G-Manipulate - G-Presets, G-Translator, G-Trigger, G-itemViewer - Market Utils, Packet Info Explorer, Plants - RandomRoomVisitor, RoomLogger, Sanbovir Photo Inspector - SpyFriends, WallAligner, XabboScripter, xabbo
24 lines
553 B
Java
24 lines
553 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.servlet;
|
|
|
|
import java.io.IOException;
|
|
import javax.servlet.ServletConfig;
|
|
import javax.servlet.ServletException;
|
|
import javax.servlet.ServletRequest;
|
|
import javax.servlet.ServletResponse;
|
|
|
|
public interface Servlet {
|
|
public void init(ServletConfig var1) throws ServletException;
|
|
|
|
public ServletConfig getServletConfig();
|
|
|
|
public void service(ServletRequest var1, ServletResponse var2) throws ServletException, IOException;
|
|
|
|
public String getServletInfo();
|
|
|
|
public void destroy();
|
|
}
|
|
|