SquirrelJME/SquirrelJME

View on GitHub
modules/dio-uart/src/main/java/jdk/dio/uart/UARTConfig.java

Summary

Maintainability
A
40 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.uart;

import cc.squirreljme.runtime.cldc.annotation.Api;
import cc.squirreljme.runtime.cldc.annotation.ApiDefinedDeprecated;
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 UARTConfig
    implements DeviceConfig<UART>, DeviceConfig.HardwareAddressing
{
    @Api
    public static final int DATABITS_5 =
        5;
    
    @Api
    public static final int DATABITS_6 =
        6;
    
    @Api
    public static final int DATABITS_7 =
        7;
    
    @Api
    public static final int DATABITS_8 =
        8;
    
    @Api
    public static final int DATABITS_9 =
        9;
    
    @Api
    public static final int FLOWCONTROL_NONE =
        0;
    
    @Api
    public static final int FLOWCONTROL_RTSCTS_IN =
        1;
    
    @Api
    public static final int FLOWCONTROL_RTSCTS_OUT =
        2;
    
    @Api
    public static final int FLOWCONTROL_XONXOFF_IN =
        4;
    
    @Api
    public static final int FLOWCONTROL_XONXOFF_OUT =
        8;
    
    @Api
    public static final int PARITY_EVEN =
        2;
    
    @Api
    public static final int PARITY_MARK =
        3;
    
    @Api
    public static final int PARITY_NONE =
        0;
    
    @Api
    public static final int PARITY_ODD =
        1;
    
    @Api
    public static final int PARITY_SPACE =
        4;
    
    @Api
    public static final int STOPBITS_1 =
        1;
    
    @Api
    public static final int STOPBITS_1_5 =
        2;
    
    @Api
    public static final int STOPBITS_2 =
        3;
    
    @ApiDefinedDeprecated
    @Api
    public UARTConfig(int __a, int __b, int __c, int __d, int __e, int __f, 
        int __g)
    {
        throw Debugging.todo();
    }
    
    @ApiDefinedDeprecated
    @Api
    public UARTConfig(int __a, int __b, int __c, int __d, int __e, int __f, 
        int __g, int __h, int __i)
    {
        throw Debugging.todo();
    }
    
    @ApiDefinedDeprecated
    @Api
    public UARTConfig(String __a, int __b, int __c, int __d, int __e, int __f
        , int __g)
    {
        throw Debugging.todo();
    }
    
    @ApiDefinedDeprecated
    @Api
    public UARTConfig(String __a, int __b, int __c, int __d, int __e, int __f
        , int __g, int __h, int __i)
    {
        throw Debugging.todo();
    }
    
    @Override
    public boolean equals(Object __a)
    {
        throw Debugging.todo();
    }
    
    @Api
    public int getBaudRate()
    {
        throw Debugging.todo();
    }
    
    @Api
    public int getChannelNumber()
    {
        throw Debugging.todo();
    }
    
    @Override
    public String getControllerName()
    {
        throw Debugging.todo();
    }
    
    @Override
    public int getControllerNumber()
    {
        throw Debugging.todo();
    }
    
    @Api
    public int getDataBits()
    {
        throw Debugging.todo();
    }
    
    @Api
    public int getFlowControlMode()
    {
        throw Debugging.todo();
    }
    
    @Api
    public int getInputBufferSize()
    {
        throw Debugging.todo();
    }
    
    @Api
    public int getOutputBufferSize()
    {
        throw Debugging.todo();
    }
    
    @Api
    public int getParity()
    {
        throw Debugging.todo();
    }
    
    @Api
    public int getStopBits()
    {
        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 UARTConfig deserialize(InputStream __a)
        throws IOException
    {
        if (false)
            throw new IOException();
        throw Debugging.todo();
    }
    
    @Api
    public static final class Builder
    {
        @Api
        public Builder()
        {
            throw Debugging.todo();
        }
        
        @Api
        public UARTConfig build()
        {
            throw Debugging.todo();
        }
        
        @Api
        public Builder setBaudRate(int __a)
        {
            throw Debugging.todo();
        }
        
        @Api
        public Builder setChannelNumber(int __a)
        {
            throw Debugging.todo();
        }
        
        @Api
        public Builder setControllerName(String __a)
        {
            throw Debugging.todo();
        }
        
        @Api
        public Builder setControllerNumber(int __a)
        {
            throw Debugging.todo();
        }
        
        @Api
        public Builder setDataBits(int __a)
        {
            throw Debugging.todo();
        }
        
        @Api
        public Builder setFlowControlMode(int __a)
        {
            throw Debugging.todo();
        }
        
        @Api
        public Builder setInputBufferSize(int __a)
        {
            throw Debugging.todo();
        }
        
        @Api
        public Builder setOutputBufferSize(int __a)
        {
            throw Debugging.todo();
        }
        
        @Api
        public Builder setParity(int __a)
        {
            throw Debugging.todo();
        }
        
        @Api
        public Builder setStopBits(int __a)
        {
            throw Debugging.todo();
        }
    }
}