?? product.java
字號:
package apusic.myshop.product.ejb;import java.rmi.RemoteException;import javax.ejb.EJBObject;public interface Product extends EJBObject{ public String getProductId() throws RemoteException; public String getCatalog() throws RemoteException; public int getSupplier() throws RemoteException; public String getName() throws RemoteException; public String getStyle() throws RemoteException; public double getListPrice() throws RemoteException; public double getUnitCost() throws RemoteException; public String getPicture() throws RemoteException; public String getOutline() throws RemoteException; public String getComment() throws RemoteException; public void setProductId(String productId) throws RemoteException; public void setCatalog(String catalog) throws RemoteException; public void setSupplier(int supplier) throws RemoteException; public void setName(String name) throws RemoteException; public void setStyle(String style) throws RemoteException; public void setListPrice(double listPrice) throws RemoteException; public void setUnitCost(double unitCost) throws RemoteException; public void setPicture(String picture) throws RemoteException; public void setOutline(String outline) throws RemoteException; public void setComment(String comment) throws RemoteException;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -