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

📄 framedcounter.java

📁 书籍"Java_面向事件编程"的附带光盘代码
💻 JAVA
字号:
import objectdraw.*;import java.awt.*;// A FramedCounter object displays a numeric counter on// a background framed by a distinct borderpublic class FramedCounter extends FramedText {        private int counter = 0;          // Current value of counter        // Create a FramedCounter object displaying 0    // at the position and with the dimensions specified    public FramedCounter( double x, double y, double width, double height,                          DrawingCanvas canvas ) {        super( "0", x, y, width, height, canvas );    }        //  Increase the counter's value and update display    public void increment( int amount ) {        counter = counter + amount;        message.setText( counter );        positionContents();    }   }

⌨️ 快捷键说明

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