SquirrelJME/SquirrelJME

View on GitHub
modules/dio-watchdog/src/main/java/jdk/dio/watchdog/WatchdogTimerConfig.java

Summary

Maintainability
A
35 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 jdk.dio.watchdog;

import cc.squirreljme.runtime.cldc.annotation.Api;
import cc.squirreljme.runtime.cldc.debug.Debugging;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import jdk.dio.DeviceConfig;

@Api
public final class WatchdogTimerConfig
    implements DeviceConfig<WatchdogTimer>, DeviceConfig.HardwareAddressing
{
    @Api
    public WatchdogTimerConfig(String __a, int __b)
    {
        throw Debugging.todo();
    }
    
    @Api
    public WatchdogTimerConfig(int __a, int __b)
    {
        throw Debugging.todo();
    }
    
    @Override
    public boolean equals(Object __a)
    {
        throw Debugging.todo();
    }
    
    @Override
    public String getControllerName()
    {
        throw Debugging.todo();
    }
    
    @Override
    public int getControllerNumber()
    {
        throw Debugging.todo();
    }
    
    @Api
    public int getTimerNumber()
    {
        throw Debugging.todo();
    }
    
    @Override
    public int hashCode()
    {
        throw Debugging.todo();
    }
    
    @Override
    public int serialize(OutputStream __a)
        throws IOException
    {
        if (false)
            throw new IOException();
        throw Debugging.todo();
    }
    
    @Api
    public static WatchdogTimerConfig deserialize(InputStream __a)
        throws IOException
    {
        if (false)
            throw new IOException();
        throw Debugging.todo();
    }
}