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

📄 fontcanvas.java

📁 用于移动设备上的java虚拟机源代码
💻 JAVA
字号:
/* * @(#)FontCanvas.java	1.3 02/07/25 @(#) * * Copyright (c) 2001 Sun Microsystems, Inc.  All rights reserved. * PROPRIETARY/CONFIDENTIAL * Use is subject to license terms. */package example.fonts;//import javax.microedition.lcdui.*;import javax.microedition.lcdui.Canvas;import javax.microedition.lcdui.Graphics;class FontCanvas extends Canvas {      FontTestlet myTestlet;    /**     * Construct a new canvas     */    FontCanvas(FontTestlet fontTestlet) {	myTestlet = fontTestlet;    }      /**     * Initialize self.     */    void init() {	// no setup stuff yet    }    /**     * Cleanup and destroy.     */    void destroy() {	// can't really get rid of mTestlet here    }    /*     * Ask MemTestlet to paint itself     */    protected void paint(Graphics g) {	myTestlet.paint(g);    }} 

⌨️ 快捷键说明

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