Corrections.
[SquirrelJME.git] / modules / jblend-api / src / main / java / com / jblend / util / BASE64Encoder.java
blobda05d2a041ca2a6329cbab32d4c44a2eb35f20ee
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.util;
12 import cc.squirreljme.runtime.cldc.annotation.Api;
13 import cc.squirreljme.runtime.cldc.debug.Debugging;
14 import java.io.IOException;
15 import java.io.InputStream;
16 import java.io.OutputStream;
18 public class BASE64Encoder
20 public BASE64Encoder()
22 throw Debugging.todo();
25 @Api
26 public static synchronized String encode(String var0)
28 throw Debugging.todo();
31 @Api
32 protected static int bytesPerAtom()
34 throw Debugging.todo();
37 @Api
38 protected static int bytesPerLine()
40 throw Debugging.todo();
43 @Api
44 protected static void encodeAtom(OutputStream var0, byte[] var1, int var2,
45 int var3)
46 throws IOException
48 throw Debugging.todo();
51 @Api
52 protected static int readFully(InputStream var0, byte[] var1)
53 throws IOException
55 throw Debugging.todo();