⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 color.java

📁 DOJA平台赛车游戏
💻 JAVA
字号:
/*
 * @(#)Color    1.0 04/07/01 @(#)
 *
 * Copyright 2004 NTT DoCoMo, Inc. All rights reserved.
 */
import com.nttdocomo.ui.Graphics;

/** 
 * Color<BR>
 * The class which defines a color.
 * <p>
 * @version 1.0
 * </p>
 */
public class Color {
    /** White */
    public static final int WHITE = Graphics.getColorOfName(Graphics.WHITE);
    /** Lime */
    public static final int LIME = Graphics.getColorOfName(Graphics.LIME);
    /** Silver */
    public static final int SILVER = Graphics.getColorOfName(Graphics.SILVER);
    /** Black */
    public static final int BLACK = Graphics.getColorOfName(Graphics.BLACK);
    /** Yellow */
    public static final int YELLOW = Graphics.getColorOfName(Graphics.YELLOW);
    /** Gray */
    public static final int GRAY = Graphics.getColorOfName(Graphics.GRAY);
    /** Blue */
    public static final int BLUE = Graphics.getColorOfName(Graphics.BLUE);

    /**
     * Constructor.
     * <br>Application cannot generate a direct instance.
     */
    private Color() {
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -