📄 exercise 5.salesformatter.java
字号:
/**
* This interface declares the method that every "Formatter" class will
* implement.
*
* @author Neil
* @version 1.1.0
* @see Sales
*/
public interface SalesFormatter {
/**
* Produces a string representation of the sales information.
*
* @param sales
* @return Returns a string representation of the sales information.
*/
public String formatSales(Sales sales);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -