employee.java

来自「一个java 代码生成器」· Java 代码 · 共 66 行

JAVA
66
字号
package com.entity.bmp;import java.rmi.RemoteException;import javax.ejb.EJBObject;import java.math.*;import java.sql.*;/** * This is the Employee interface. * * @Author: Siddhartha P. Chandurkar * @version $ID: $ * */public interface Employee extends EJBObject{		//Get Methods	Integer getId() throws RemoteException;	Integer getDeptId() throws RemoteException;	String getFirstName() throws RemoteException;	String getLastName() throws RemoteException;	String getSex() throws RemoteException;	Date getBirthDate() throws RemoteException;	Double getSalary() throws RemoteException;	String getDepartment() throws RemoteException;		//Set methods      	void setId(Integer _id) throws RemoteException;		void setDeptId(Integer _deptId) throws RemoteException;		void setFirstName(String _firstName) throws RemoteException;		void setLastName(String _lastName) throws RemoteException;		void setSex(String _sex) throws RemoteException;		void setBirthDate(Date _birthDate) throws RemoteException;		void setSalary(Double _salary) throws RemoteException;		void setDepartment(String _department) throws RemoteException;	void bar()throws RemoteException, MyException, MyOtherException;	void foo();		    	/**	 * Write your manual code between these tags. They will be retained if code is 	 * regenerated.	 * IMPORTANT !!! Please do not remove these tags even if you dont add any manual code	 */	//<manual-code>				//</manual-code>}

⌨️ 快捷键说明

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