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

📄 ejbdata.java

📁 主要是对串口驱动的的一些控制源码!!! 在下载javacomm20-win32.zip后就可以使用。
💻 JAVA
字号:
/**
 * $Log: EJBData.java,v $
 * Revision 1.2  2003/02/12 16:54:18  mwulff
 * no deals with JndiProperties instead of LookupHandler
 *
 * Revision 1.1  2003/01/16 13:11:41  mwulff
 * initial version
 *
 * Revision 1.1  2002/11/22 16:41:50  mwulff
 * moved
 *
 * Revision 1.1  2002/11/15 18:20:56  mwulff
 * initial version
 *
 */
package de.fhm.jkf.comm.sv;

/**
 * @author	marten wulff
 */
public class EJBData {
	
	private String jndiName = null;
	private JndiProperties jndiProperties = null;
	private String homeInterface = null;

	/**
	 * Constructor for EJBData.
	 */
	public EJBData() {
		super();
		jndiProperties = new JndiProperties();
	}

	/**
	 * Returns the homeInterface.
	 * @return String
	 */
	public String getHomeInterface() {
		return homeInterface;
	}

	/**
	 * Returns the jndiProperties.
	 * @return JndiProperties
	 */
	public JndiProperties getJndiProperties() {
		return jndiProperties;
	}

	/**
	 * Sets the homeInterface.
	 * @param homeInterface The homeInterface to set
	 */
	public void setHomeInterface(String homeInterface) {
		this.homeInterface = homeInterface;
	}

	/**
	 * Sets the jndiProperties.
	 * @param jndiProperties The jndiProperties to set
	 */
	public void setJndiProperties(JndiProperties props) {
		this.jndiProperties = props;
	}

	/**
	 * Returns the jndiName.
	 * @return String
	 */
	public String getJndiName() {
		return jndiName;
	}

	/**
	 * Sets the jndiName.
	 * @param jndiName The jndiName to set
	 */
	public void setJndiName(String jndiName) {
		this.jndiName = jndiName;
	}

}

⌨️ 快捷键说明

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