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

📄 ssprfadecomponent.java

📁 很好的程序
💻 JAVA
字号:
/* * SSPRFadeComponent.java * * Created on December 29, 2004, 9:11 PM */package hysun.app;import hysun.util.FadeComponent;/** * SSPR: Start-Stop-Pause-Resume * * @author hysun */public class SSPRFadeComponent extends FadeComponent {        public SSPRFadeComponent() {        super();    }        public SSPRFadeComponent(String pattern, int loops, int steps, int precision) {        super(pattern, loops, steps, precision);    }        public void pauseAnimation() {        if (!this.isAnimating())            return;        this.animator.suspend();    }        public void resumeAnimation() {        if (!this.isAnimating())            return;        this.animator.resume();    }        public void stopAnimation() {        if (!this.isAnimating())            return;        this.animator.stop();        this.animating = false;    }    }

⌨️ 快捷键说明

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