Disable TestHasApps.
[SquirrelJME.git] / modules / cldc-compact / src / main / java / cc / squirreljme / jvm / mle / constants / UISpecialCode.java
blobf4bd371adc7190e28fc3ba428e72ab8615082687
1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
3 // SquirrelJME
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the Mozilla Public License Version 2.0.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package cc.squirreljme.jvm.mle.constants;
12 /**
13 * Special user interface constants.
15 * @since 2020/09/21
17 @Deprecated
18 public interface UISpecialCode
20 /** Fire repaint. */
21 @Deprecated
22 byte REPAINT_EXECUTE =
23 0x0;
25 /** Repaint X Coordinate ({@link UIWidgetProperty#INT_SIGNAL_REPAINT}. */
26 @Deprecated
27 int REPAINT_KEY_X =
28 0x1_0000000;
30 /** Repaint Y Coordinate ({@link UIWidgetProperty#INT_SIGNAL_REPAINT}. */
31 @Deprecated
32 int REPAINT_KEY_Y =
33 0x2_0000000;
35 /** Repaint Width ({@link UIWidgetProperty#INT_SIGNAL_REPAINT}. */
36 @Deprecated
37 int REPAINT_KEY_WIDTH =
38 0x3_0000000;
40 /** Repaint Height ({@link UIWidgetProperty#INT_SIGNAL_REPAINT}. */
41 @Deprecated
42 int REPAINT_KEY_HEIGHT =
43 0x4_0000000;
45 /** Repaint Key Mask ({@link UIWidgetProperty#INT_SIGNAL_REPAINT}. */
46 @Deprecated
47 int REPAINT_KEY_MASK =
48 0xF_0000000;
50 /** Repaint Key Value ({@link UIWidgetProperty#INT_SIGNAL_REPAINT}. */
51 @Deprecated
52 int REPAINT_VALUE_MASK =
53 0x0_FFFFFFF;