bootstraploader.java

来自「jConfig,JAVA读取XML的开源项目」· Java 代码 · 共 27 行

JAVA
27
字号
/*
 * BootstrapLoader.java
 *
 * Created on 23. August 2004, 21:30
 */

package org.jconfig.bootstrap;

import org.jconfig.*;
/**
 * This interface defines the method that every BootstrapLoader
 * must implement
 * 
 * @author  Andreas Mecky andreasmecky@yahoo.de
 * @author  Terry Dye terrydye@yahoo.com
 */
public interface BootstrapLoader {
    
    /**
     * This method is supposed to return a list of configurations.
     * The specific BootstrapLoader is used by the ConfigurationManager
     * when instantiated. All configurations will be added to the 
     * ConfigurationManager.
     */
    public LoadedItem[] load() throws ConfigurationManagerException;
}

⌨️ 快捷键说明

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