SquirrelJME/SquirrelJME

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

Summary

Maintainability
A
0 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
public class IntRingBuffer
{
    @Api
    public IntRingBuffer()
    {
        throw Debugging.todo();
    }
    
    @Api
    public IntRingBuffer(int var1)
    {
        throw Debugging.todo();
    }
    
    @Api
    public IntRingBuffer(int var1, int var2)
    {
        throw Debugging.todo();
    }
    
    @Api
    public void write(int var1)
        throws IOException
    {
        throw Debugging.todo();
    }
    
    @Api
    public void write(int var1, int var2, int var3, int var4, int var5)
        throws IOException
    {
        throw Debugging.todo();
    }
    
    @Api
    public void write(int[] var1)
        throws IOException
    {
        throw Debugging.todo();
    }
    
    @Api
    public int read()
        throws IOException
    {
        throw Debugging.todo();
    }
    
    @Api
    public void read(int[] var1)
        throws IOException
    {
        throw Debugging.todo();
    }
    
    @Api
    public int peek()
        throws IOException
    {
        throw Debugging.todo();
    }
    
    @Api
    public void peek(int[] var1)
        throws IOException
    {
        throw Debugging.todo();
    }
    
    @Api
    public int available()
    {
        throw Debugging.todo();
    }
    
    @Api
    public int getFreeArea()
    {
        throw Debugging.todo();
    }
}