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

📄 deptremote.java

📁 This project mainly deals with automating the tasks of Purchasing, maintaining,manfactioring and tra
💻 JAVA
字号:

package packIC;

import java.rmi.*;
import javax.ejb.*;

public interface DeptRemote extends EJBObject
{

	
	public void setSno(int sno ) throws RemoteException;
	public int getSno() throws RemoteException;
	public void setDeptno(int deptno ) throws RemoteException;
	public int getDeptno() throws RemoteException;
	public void setDeptname(String deptname) throws RemoteException;
	public String getDeptname() throws RemoteException;
        public void setLocation(String location) throws RemoteException;
	public String getLocation() throws RemoteException;
       	public void setDepthead(String depthead ) throws RemoteException;
	public String getDepthead() throws RemoteException;
        
	
}

⌨️ 快捷键说明

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