?? isalepricingstrategy.java
字號:
/**
* @name ISalePricingStrategy.java
* @author Administrator/pan
* @version 1.1
* @date 2009/2/16
*/
package com.digitstore.process.server.sale;
import com.digitstore.process.sale.Sale;
//提供了對商品實行不同定價策略的接口類
public interface ISalePricingStrategy {
public double getTotal(Sale sale);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -