Package org.goobi.production.plugin.interfaces

Examples of org.goobi.production.plugin.interfaces.IImportPlugin


  public List<String> getPluginsForType(ImportType type) {
    List<String> pluginList = new ArrayList<String>();
   
    for (IPlugin p : PluginLoader.getPluginList(PluginType.Import)) {
      IImportPlugin ip = (IImportPlugin) p;
      if (ip.getImportTypes().contains(type)) {
        pluginList.add(p.getTitle());
      }
    }
    return pluginList;
  }
View Full Code Here

TOP

Related Classes of org.goobi.production.plugin.interfaces.IImportPlugin

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.