spimpl.java

来自「JDiff is a Javadoc doclet which generate」· Java 代码 · 共 44 行

JAVA
44
字号
package com.acme.sp;import java.lang.*;/** * This class is the interface for accessing an SP object. */public class SPImpl implements SP {    /** Default constructor. */    private SPImpl() {    }        /** Method to create a new SP object, hidden for future flexibility. */    public static SP createSP() {        SPImpl spimpl = new SPImpl();        return spimpl;    }    /**      * This method was inherited from the SP interface.     *     * @deprecated Use some other method instead.     */    public int saveName(String name, int value) {        return 1;    }    /**      * This is the new method for flushing tables.      *     * @since SuperProduct 2.0     */    public void flushTable(SP instance) {    }    /**      * We've changed the signature in the 2.0 release.      */    public static void buildLog(String logName, int timeout,                                 boolean isDisk, int numRollovers) {    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?