zonecontroller.java
来自「这是一个以JAVA编写的程序,本人还没有试过,是一个简单的温度控制系统」· Java 代码 · 共 53 行
JAVA
53 行
package net.sf.dz.device.model;import java.util.Iterator;import net.sf.dz.event.ThermostatListener;import org.freehold.jukebox.conf.Configurable;/** * Zone controller. * * Accepts the signals from the thermostats and issues control signals to * the AC Controller and damper controller. Also should be capable of * controlling the forced fan on mode in such a way that it doesn't * interfere with normal operation. * * <p> * * It is an interface to allow the adapters to be implemented - in * particular, for remote access. * * @author Copyright © <a href="mailto:vt@freehold.crocodile.org">Vadim Tkachenko</a> 2001-2002 * @version $Id: ZoneController.java,v 1.3 2002/06/26 08:51:04 vtt Exp $ */public interface ZoneController extends ThermostatListener, Configurable { /** * Set the dump threshold. * * @param threshold Dump threshold to set. * * @exception IllegalArgumentException if the parameter value is outside of 0...1.0 range. */ public void setDumpThreshold(double threshold); /** * Get the dump threshold. * * @return Current value of the dump threshold. */ public double getDumpThreshold(); /** * Attach to the unit. * * The zone controller must be attached to the unit before it can begin * working. * * @param unit The logical HVAC unit this zone controller will be serving. */ public void attach(Unit unit);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?