damperlistener.java

来自「这是一个以JAVA编写的程序,本人还没有试过,是一个简单的温度控制系统」· Java 代码 · 共 22 行

JAVA
22
字号
package net.sf.dz.event;import net.sf.dz.device.actuator.Damper;/** * The damper listener. * * @author Copyright &copy; <a href="mailto:vt@freehold.crocodile.org">Vadim Tkachenko</a> 2002 * @version $Id: DamperListener.java,v 1.1 2002/05/06 06:19:22 vtt Exp $ */public interface DamperListener {    /**     * Accept the notification about the change of damper position.     *     * @param source The damper whose position has changed.     *     * @param throttle Current position of the damper.     */    public void throttleChanged(Damper source, double throttle);}

⌨️ 快捷键说明

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