SquirrelJME/SquirrelJME

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

import cc.squirreljme.runtime.cldc.annotation.Api;
import cc.squirreljme.runtime.cldc.debug.Debugging;
import cc.squirreljme.runtime.lcdui.mle.DisplayWidget;
import cc.squirreljme.runtime.lcdui.mle.UIBackend;
import java.io.IOException;
import javax.microedition.io.ConnectionNotFoundException;
import javax.microedition.io.StreamConnection;

@Api
@SuppressWarnings("DuplicateThrows")
public class FileSelector
    extends Screen
{
    /**
     * This is used when the user has dismissed the file selector without
     * having any file selected.
     */
    @Api
    public static final Command CANCEL_COMMAND =
        new Command("Cancel", Command.CANCEL, 1, true);
    
    /** This is used when the user has selected a file. */
    @Api
    public static final Command OK_COMMAND =
        new Command("Select", Command.OK, 0, true);
    
    @Api
    public static final int DIRECTORY_CREATE =
        3;
    
    @Api
    public static final int DIRECTORY_SELECT =
        2;
    
    @Api
    public static final int LOAD =
        0;
    
    @Api
    public static final int SAVE =
        1;
    
    @Api
    public FileSelector(String __title, int __mode)
    {
        throw Debugging.todo();
    }
    
    @Api
    public String[] getFilterExtensions()
    {
        throw Debugging.todo();
    }
    
    /**
     * {@inheritDoc}
     * @since 2017/05/24
     */
    @Override
    public int getHeight()
    {
        throw Debugging.todo();
        /*
        return this.__defaultHeight();
        */
    }
    
    @Api
    public int getMode()
    {
        throw Debugging.todo();
    }
    
    @Api
    public String getURL()
    {
        throw Debugging.todo();
    }
    
    /**
     * {@inheritDoc}
     * @since 2017/05/24
     */
    @Override
    public int getWidth()
    {
        throw Debugging.todo();
        /*
        return this.__defaultWidth();
        */
    }
    
    @Api
    public StreamConnection open(int __mode, boolean __to)
        throws ConnectionNotFoundException, IOException
    {
        throw Debugging.todo();
    }
    
    @Api
    public void setFilterExtensions(String[] __ext)
    {
        throw Debugging.todo();
    }
    
    @Api
    public void setMode(int __m)
    {
        throw Debugging.todo();
    }
    
    @Api
    public void setURL(String __u)
        throws IOException
    {
        throw Debugging.todo();
    }
    
    /**
     * {@inheritDoc}
     * @since 2023/01/14
     */
    @Override
    __CommonState__ __stateInit(UIBackend __backend)
        throws NullPointerException
    {
        return new __FileSelectorState__(__backend, this);
    }
    
    /**
     * File selector state.
     * 
     * @since 2023/01/14
     */
    static class __FileSelectorState__
        extends Screen.__ScreenState__
    {
        /**
         * Initializes the backend state.
         *
         * @param __backend The backend used.
         * @param __self Self widget.
         * @since 2023/01/14
         */
        __FileSelectorState__(UIBackend __backend, DisplayWidget __self)
        {
            super(__backend, __self);
        }
    }
}