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
19 lines
356 B
Java
19 lines
356 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.servlet;
|
|
|
|
import java.util.Enumeration;
|
|
import javax.servlet.ServletContext;
|
|
|
|
public interface ServletConfig {
|
|
public String getServletName();
|
|
|
|
public ServletContext getServletContext();
|
|
|
|
public String getInitParameter(String var1);
|
|
|
|
public Enumeration<String> getInitParameterNames();
|
|
}
|
|
|