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
21 lines
350 B
Java
21 lines
350 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package okio;
|
|
|
|
import java.io.Closeable;
|
|
import java.io.IOException;
|
|
import okio.Buffer;
|
|
import okio.Timeout;
|
|
|
|
public interface Source
|
|
extends Closeable {
|
|
public long read(Buffer var1, long var2) throws IOException;
|
|
|
|
public Timeout timeout();
|
|
|
|
@Override
|
|
public void close() throws IOException;
|
|
}
|
|
|