advertisejob.java

来自「21天精通Java,这是一本英文书」· Java 代码 · 共 15 行

JAVA
15
字号
package agency;

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

public interface AdvertiseJob extends EJBObject
{
	void updateDetails (String description, String location, String[] skills) throws RemoteException;
	String getRef() throws RemoteException;
	String getCustomer() throws RemoteException;
	String getDescription() throws RemoteException;
	String getLocation() throws RemoteException;
	String[] getSkills() throws RemoteException;
}

⌨️ 快捷键说明

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