isplashdrawer.java
来自「Bluetooth chat Server and Client in j2」· Java 代码 · 共 37 行
JAVA
37 行
/* I BlueTooth You -- Simple BlueTooth talker Copyright (C) 2007 Jan Tomka This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. */package net.sf.btw.ibtu.ui;import javax.microedition.lcdui.Graphics;/** * This interface defines properties and methods needed for a splash screen * drawer classes to implement. It only contains single method which should * implement a splash screen drawing itself. * * @author Jan Tomka */// TODO Remove file.public interface ISplashDrawer { /** * Paints a splash screen. This method should always repaint the entire * canvas. * * @param g * Graphics to do drawing on. */ public void paint(Graphics g);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?