Corrections.
[SquirrelJME.git] / modules / jblend-api / src / main / java / com / jblend / io / SimpleObjectInputStream.java
blobb570f77d8dc728a65939c99de41d0acc7b3aaf12
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
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();
29 @Api
30 public String readString()
31 throws IOException
33 throw Debugging.todo();
36 @Api
37 public SimpleSerializable read(SimpleSerializable var1)
38 throws IOException
40 throw Debugging.todo();
43 @Api
44 public Object dispatchReadCommand(Class var1)
45 throws IOException
47 throw Debugging.todo();