Make Exported just be SquirrelJMEVendorApi.
[SquirrelJME.git] / modules / midp-lcdui / src / main / java / cc / squirreljme / runtime / lcdui / BacklightControl.java
blob6cbd357f3695b21ff431e93ccbc0582c1a90e58a
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 GNU General Public License v3+, or later.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package cc.squirreljme.runtime.lcdui;
12 import cc.squirreljme.runtime.cldc.debug.Debugging;
14 /**
15 * Control utilities for the backlight.
17 * @since 2021/11/30
19 public final class BacklightControl
21 /** The minimum backlight level. */
22 public static final byte MIN_LEVEL =
25 /** The maximum backlight level. */
26 public static final byte MAX_LEVEL =
27 100;
29 /**
30 * Sets the level of the backlight.
32 * @param __level The backlight level, if outside of bounds it will be
33 * capped accordingly.
34 * @since 2021/11/30
36 public static void setLevel(int __level)
38 Debugging.todoNote("Implement backlight set: %d", __level);