Package net.sf.jabref.plugin.PluginInstaller

Examples of net.sf.jabref.plugin.PluginInstaller.NameAndVersion


    private void buildList() {
        plugins = new SortedList<NameAndVersion>(PluginInstaller.findInstalledPlugins());
        // Move those plugins that are not installed in the user plugin dir to another list:
        EventList<NameAndVersion> outsideUserDir = new BasicEventList<NameAndVersion>();
        for (Iterator<NameAndVersion> i = plugins.iterator(); i.hasNext();) {
            NameAndVersion nav = i.next();
            if (!nav.inUserDirectory) {
                outsideUserDir.add(nav);
                i.remove();
            }
        }
View Full Code Here

TOP

Related Classes of net.sf.jabref.plugin.PluginInstaller.NameAndVersion

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.