SquirrelJME/SquirrelJME

View on GitHub
modules/cldc/src/main/java/java/nio/channels/Channels.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 java.nio.channels;

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

@Api
public final class Channels
{
    private Channels()
    {
        throw Debugging.todo();
    }
    
    @Api
    public static ReadableByteChannel newChannel(InputStream __a)
    {
        throw Debugging.todo();
    }
    
    @Api
    public static WritableByteChannel newChannel(OutputStream __a)
    {
        throw Debugging.todo();
    }
    
    @Api
    public static InputStream newInputStream(ReadableByteChannel __a)
    {
        throw Debugging.todo();
    }
    
    @Api
    public static OutputStream newOutputStream(WritableByteChannel __a)
    {
        throw Debugging.todo();
    }
}