salesformatter.java

来自「这是我修读美国卡耐基梅隆大学Carnegie Mellon University」· Java 代码 · 共 19 行

JAVA
19
字号
/**
 *This interface defines a method that obtains a string
 *representation of the specified sales.
 *
 *@author 张维
 *@version  1.0.0
 *@see Sales
 */
public interface SalesFormatter {
	
	/**
	 * Produces a string representation of the sales information.
	 *
	 * @param sales  the <code>Sales</code> object.
	 * @return  the string representation of the specified <code>Sales</code> object.
   */
   public abstract String formatSales(Sales sales);
}	

⌨️ 快捷键说明

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