1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the GNU General Public License v3+, or later.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package com
.jblend
.io
;
12 import cc
.squirreljme
.runtime
.cldc
.annotation
.Api
;
13 import cc
.squirreljme
.runtime
.cldc
.debug
.Debugging
;
14 import java
.io
.DataInputStream
;
15 import java
.io
.IOException
;
16 import java
.io
.InputStream
;
18 @SuppressWarnings("RedundantThrows")
19 public class SimpleObjectInputStream
20 extends DataInputStream
22 public SimpleObjectInputStream(InputStream var1
)
24 super((InputStream
)null);
26 throw Debugging
.todo();
30 public String
readString()
33 throw Debugging
.todo();
37 public SimpleSerializable
read(SimpleSerializable var1
)
40 throw Debugging
.todo();
44 public Object
dispatchReadCommand(Class var1
)
47 throw Debugging
.todo();