SquirrelJME/SquirrelJME

View on GitHub
modules/m3g/src/main/java/javax/microedition/m3g/Loader.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 javax.microedition.m3g;

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

@SuppressWarnings("ClassWithOnlyPrivateConstructors")
@Api
public class Loader
{
    @Api
    private Loader()
    {
        throw Debugging.todo();
    }
    
    @Api
    public static Object3D[] load(byte[] __a, int __b)
        throws IOException
    {
        if (false)
            throw new IOException();
        throw Debugging.todo();
    }
    
    @Api
    public static Object3D[] load(String __a)
        throws IOException
    {
        if (false)
            throw new IOException();
        throw Debugging.todo();
    }
}