SquirrelJME/SquirrelJME

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

/**
 * Text undirty state.
 *
 * @since 2021/02/07
 */
final class __TextUndirtyState__
{
    /** The default font. */
    public Font defaultfont;
    
    /** The width. */
    public int width;
    
    /** The height. */
    public int height;
    
    /** The space above. */
    public int spaceabove;
    
    /** The space below. */
    public int spacebelow;
    
    /** The alignment. */
    public int align;
    
    /** The indentation. */
    public int indentation;
    
    /** The direction. */
    public int direction;
    
    /** The scroll offset. */
    public int scrolloffset;
}