paymentremotebusiness.java

来自「java 开发工具书上的一些代码」· Java 代码 · 共 14 行

JAVA
14
字号

package org.netbeans.app.StatelessBeanExample;


/**
 * This is the business interface for Payment enterprise bean.
 */
public interface PaymentRemoteBusiness {
      public boolean payByCash(String customer, double amount) throws java.rmi.RemoteException;
      public boolean payByCheck(String customer, String check_number, double amount ) throws java.rmi.RemoteException;
      public boolean payByCreditCard(String customer, String card_number, double amount) throws java.rmi.RemoteException;
      public java.util.Vector  search(String customer ) throws java.rmi.RemoteException;      
}

⌨️ 快捷键说明

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