📄 gamestatuslabel.java
字号:
package bingo.shared;import java.awt.*;import javax.swing.*;// Used by the game keeper to show its current status.// Not thread-safe, so call updateStatus from the AWT thread. XXXpublic class GameStatusLabel extends JLabel implements GameListener {//public class GameStatusLabel extends Label implements GameListener { static protected String initialStatusString = "该区域将显示游戏状态信息"; public GameStatusLabel() { super(initialStatusString, LEFT); try { new GameListenerThread(this).start(); } catch (java.io.IOException e) { //XXX: what to do? System.err.println("IOException when starting GameListenerThread."); } } public void updateStatus(String message) { setText(message); } //public Dimension getMaximumSize() { //Dimension d = getPreferredSize(); //d.width = Short.MAX_VALUE; //return d; //}}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -