📄 borrowersformatter.java
字号:
/**
* This interface defines a method that obtains a string
* representation of a {@link BorrowerDatabase} object.
*
* @author author name
* @version 1.0.0
* @see BorrowerDatabase
*/
public interface BorrowersFormatter {
/**
* Obtains the string representation of the specified borrower
* database.
*
* @param borrowerDB the borrower database.
* @return the string representation of the specified
* {@link BorrowerDatabase} object.
*/
String formatBorrowers (BorrowerDatabase borrowerDB);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -