statusbar.java
来自「一个用Java写的」· Java 代码 · 共 26 行
JAVA
26 行
/****************************************************************** * Copyright (C) 2002-2006 Andrew Girow. All rights reserved. * * ---------------------------------------------------------------* * This software is published under the terms of the TinyLine * * License, a copy of which has been included with this * * distribution in the TINYLINE_LICENSE.TXT file. * * * * For more information on the TinyLine, * * please see <http://www.tinyline.com/>. * *****************************************************************/package com.tinyline.app;/** * This interface represents the Status Bar used for alerts and messages * <p> * @author (C) Andrew Girow * @version 1.10 * <p> */public interface StatusBar{ public void alertError(String s); public void alertWait(String s); public void alertInit(String s);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?