Corrections.
[SquirrelJME.git] / modules / jblend-api / src / main / java / com / jblend / util / RingBuffer.java
blob49cfae6a951f5c16c357f98c68c1745342960f5e
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;
16 @SuppressWarnings("RedundantThrows")
17 public final class RingBuffer
19 public RingBuffer()
21 throw Debugging.todo();
24 public RingBuffer(int var1)
26 throw Debugging.todo();
29 public RingBuffer(int var1, int var2)
31 throw Debugging.todo();
34 @Api
35 public void write(Object var1)
36 throws IOException
38 throw Debugging.todo();
41 @Api
42 public void write(Object[] var1)
43 throws IOException
45 throw Debugging.todo();
48 @Api
49 public Object read()
50 throws IOException
52 throw Debugging.todo();
55 @Api
56 public void read(Object[] var1)
57 throws IOException
59 throw Debugging.todo();
62 @Api
63 public Object peek()
64 throws IOException
66 throw Debugging.todo();
69 @Api
70 public void peek(Object[] var1)
71 throws IOException
73 throw Debugging.todo();
76 @Api
77 public int available()
79 throw Debugging.todo();
82 @Api
83 public int getFreeArea()
85 throw Debugging.todo();