factoryclassinfo.java

来自「Java的面向对象数据库系统的源代码」· Java 代码 · 共 21 行

JAVA
21
字号
package org.ozoneDB;/** * <p>Every <code>XxxImplFactory</code> must create 1 instance of a class * implementing this interface and call <code>addFactoryClassInfo</code> with * that instance as parameter.</p> * @author  leo */public interface FactoryClassInfo {        /**     * <p>This method is called when someone called <code>AbstractFactory.setDefaultDatabaseUrl</code>.     * Implementations of this class should use this method to make shure the     * next time <code>getDefault()</code> is called for its factory class, that     * method will return a factory connected to the database identified by the     * new uri.</p>     */    public void defaultDatabaseUrlChanged();    }

⌨️ 快捷键说明

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