borrowersformatter.java

来自「ssd3的教程 是我们老师给我们的 纯英文 有兴趣的可以」· Java 代码 · 共 22 行

JAVA
22
字号
/**
 * 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 + =
减小字号Ctrl + -
显示快捷键?