servermodule.java
来自「这是一个以JAVA编写的程序,本人还没有试过,是一个简单的温度控制系统」· Java 代码 · 共 27 行
JAVA
27 行
package net.sf.dz.daemon;/** * A server module. * * @author Copyright © <a href="mailto:vt@freehold.crocodile.org">Vadim Tkachenko</a> 2001-2002 * @version $Id: ServerModule.java,v 1.1 2002/05/22 07:13:12 vtt Exp $ */public interface ServerModule { /** * Attach the module to the server. * * This is necessary for the module to be aware of the context. It is a * responsibility of the module to know how to interpret the server * context. * * <p> * * The module is attached to the server right after it is configured, * but before it is started. * * @param server Server to attach to. */ public void attach(Server server);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?