Examples of PluginProvider


Examples of org.rat.free.security.makifx.core.base.PluginProvider

    private void saveAllData() {
        try {
            Collection<PluginProvider> plugins = MAP_PLUGIN.values();
            if (plugins != null && !plugins.isEmpty()) {
                for (Iterator<PluginProvider> ite = plugins.iterator(); ite.hasNext();) {
                    final PluginProvider plugin = ite.next();
                    if (Answare.NEGATIVE.equals(plugin.onSavingData())) {

                        log("WRN - Can't save plugin:" + plugin.getId() + " RETURN FALSE");

                        Platform.runLater(() -> {
                            plugin.setSelected();
                        });

                        Tab tab = findTab(plugin.getId());
                        selectTab(tab);
                        return;
                    }
                }
            }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.