?? supplier.java
字號:
package apusic.myshop.supplier.ejb;import java.rmi.RemoteException;import javax.ejb.EJBObject;public interface Supplier extends EJBObject { public int getSuppId() throws RemoteException; public String getName() throws RemoteException; public String getAddress() throws RemoteException; public String getProvince() throws RemoteException; public String getCity() throws RemoteException; public String getZip() throws RemoteException; public String getPhone() throws RemoteException; public String getEmail() throws RemoteException; public void setSuppId(int suppId) throws RemoteException; public void setName(String name) throws RemoteException; public void setAddress(String address) throws RemoteException; public void setProvince(String province) throws RemoteException; public void setCity(String city) throws RemoteException; public void setZip(String zip) throws RemoteException; public void setPhone(String phone) throws RemoteException; public void setEmail(String email) throws RemoteException;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -