processcontrollerlistener.java
来自「这是一个以JAVA编写的程序,本人还没有试过,是一个简单的温度控制系统」· Java 代码 · 共 33 行
JAVA
33 行
package net.sf.dz.controller;/** * Process controller listener. * * @author Copyright © <a href="mailto:vt@freehold.crocodile.org"> Vadim Tkachenko</a> 2001 * @version $Id: ProcessControllerListener.java,v 1.2 2004/06/28 20:35:46 vtt Exp $ */public interface ProcessControllerListener { /** * Accept notification about the process controller status change. * * @param source The process controller whose status has changed. * * @param status Process controller data. This object is generic because * there are many different kinds of process controller which expose * different features. Preferrably, this is the same object that is * exposed by {@link ProcessController#getStatus() * ProcessController.getStatus()} method. */ void processControllerStatusChanged(ProcessController source, ProcessControllerStatus status); /** * Accept the notification about the controller setpoint change. * * @param source The process controller whose setpoint has changed. * * @param setpoint Current value of the process controller setpoint. */ void setpointChanged(ProcessController source, double setpoint);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?