spimpl.java

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

JAVA
35
字号
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.     */    public int saveName(String name, int value) {        return 1;    }    /** This method will be be removed one day. */    protected static void createTable(SP instance) {    }    /** Not sure if we've got the signature quite right in this release. */    protected void buildLog(String logName, int timeout) {    }}

⌨️ 快捷键说明

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