⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 salesformatter.java

📁 这是我修读美国卡耐基梅隆大学Carnegie Mellon University(CMU)课程ssd3:Object-Oriented Programming and Design时完成的课程设计
💻 JAVA
字号:
/**
 *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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -