Rename ntt-docomo-star-api to vendor-api-ntt-docomo-star.
[SquirrelJME.git] / modules / ntt-docomo-doja-api / src / main / java / com / nttdocomo / ui / Image.java
bloba43e09f262b1674e45492a5ce274ec28cd9d95d0
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 com.nttdocomo.ui;
12 import cc.squirreljme.runtime.cldc.annotation.Api;
13 import cc.squirreljme.runtime.cldc.debug.Debugging;
15 /**
16 * Represents a raster image.
18 * @see javax.microedition.lcdui.Image
19 * @since 2021/11/30
21 @Api
22 @SuppressWarnings("AbstractClassWithOnlyOneDirectInheritor")
23 public abstract class Image
25 protected Image()
29 @Api
30 public abstract void dispose();
32 @Api
33 public int getHeight()
35 throw Debugging.todo();
38 @Api
39 public int getWidth()
41 throw Debugging.todo();