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

📄 entrance.java

📁 用于串口通讯测试的工具软件。完全使用java语言编写。
💻 JAVA
字号:
/***********************************************************************
 * Module:  Entrance.java
 * Author:  jzx
 * Purpose: Defines the Class Entrance
 ***********************************************************************/

package com.zcsoft.stock;

import java.util.*;

public class Entrance extends Device
{
	/** 是否联机状态 */
	private boolean online = false;

	/** @param name 设备唯一标识号 */
	public Entrance(String name)
	{
		super(name);
	}

	/** @param an */
	public void copyFieldFrom(Device an)
	{
		super.copyFieldFrom(an);
		this.setOnline(((Entrance)an).online);
	}


	public void setOnline(boolean online)
	{
		boolean old = this.online;
		this.online = online;
		this.firePropertyChange("online", old, online);
	}


	public boolean isOnline()
	{
		return online;
	}

}

⌨️ 快捷键说明

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