?? agency.java
字號(hào):
package agency;
import java.rmi.*;
import java.util.*;
import javax.ejb.*;
public interface Agency extends EJBObject
{
String getAgencyName() throws RemoteException;
Collection getApplicants() throws RemoteException;
void createApplicant(String login, String name, String email) throws RemoteException, DuplicateException, CreateException;
void deleteApplicant (String login) throws RemoteException, NotFoundException;
Collection getCustomers() throws RemoteException;
void createCustomer(String login, String name, String email) throws RemoteException, DuplicateException, CreateException;
void deleteCustomer (String login) throws RemoteException, NotFoundException;
Collection getLocations() throws RemoteException;
String getLocationDescription(String name) throws RemoteException, NotFoundException;
void addLocation(String name, String description) throws RemoteException, DuplicateException;
void updateLocation(String name, String description) throws RemoteException, NotFoundException;
void removeLocation(String code) throws RemoteException, NotFoundException;
Collection getSkills() throws RemoteException;
String getSkillDescription(String name) throws RemoteException, NotFoundException;
void addSkill(String name, String description) throws RemoteException, DuplicateException;
void updateSkill(String name, String description) throws RemoteException, NotFoundException;
void removeSkill(String name) throws RemoteException, NotFoundException;
List select(String table) throws RemoteException;
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -