📄 salesformatter.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 + -