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
20 lines
308 B
Java
20 lines
308 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package javax.websocket;
|
|
|
|
import java.util.List;
|
|
|
|
public interface Extension {
|
|
public String getName();
|
|
|
|
public List<Parameter> getParameters();
|
|
|
|
public static interface Parameter {
|
|
public String getName();
|
|
|
|
public String getValue();
|
|
}
|
|
}
|
|
|