SquirrelJME/SquirrelJME

View on GitHub
modules/vendor-api-jblend/src/main/java/com/jblend/util/RingBuffer.java

Summary

Maintainability
A
45 mins
Test Coverage
// -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
// ---------------------------------------------------------------------------
// SquirrelJME
//     Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
// ---------------------------------------------------------------------------
// SquirrelJME is under the Mozilla Public License Version 2.0.
// See license.mkd for licensing and copyright information.
// ---------------------------------------------------------------------------

package com.jblend.util;

import cc.squirreljme.runtime.cldc.annotation.Api;
import cc.squirreljme.runtime.cldc.debug.Debugging;
import java.io.IOException;

@Api
@SuppressWarnings("RedundantThrows")
public final class RingBuffer
{
    @Api
    public RingBuffer()
    {
        throw Debugging.todo();
    }
    
    @Api
    public RingBuffer(int var1)
    {
        throw Debugging.todo();
    }
    
    @Api
    public RingBuffer(int var1, int var2)
    {
        throw Debugging.todo();
    }
    
    @Api
    public void write(Object var1)
        throws IOException
    {
        throw Debugging.todo();
    }
    
    @Api
    public void write(Object[] var1)
        throws IOException
    {
        throw Debugging.todo();
    }
    
    @Api
    public Object read()
        throws IOException
    {
        throw Debugging.todo();
    }
    
    @Api
    public void read(Object[] var1)
        throws IOException
    {
        throw Debugging.todo();
    }
    
    @Api
    public Object peek()
        throws IOException
    {
        throw Debugging.todo();
    }
    
    @Api
    public void peek(Object[] var1)
        throws IOException
    {
        throw Debugging.todo();
    }
    
    @Api
    public int available()
    {
        throw Debugging.todo();
    }
    
    @Api
    public int getFreeArea()
    {
        throw Debugging.todo();
    }
}