Package org.pentaho.reporting.engine.classic.core.modules.gui.commonswing

Examples of org.pentaho.reporting.engine.classic.core.modules.gui.commonswing.ActionPlugin.deinitialize()


        {
          final ActionPlugin[] plugin = plugins[i];
          for (int j = 0; j < plugin.length; j++)
          {
            final ActionPlugin actionPlugin = plugin[j];
            actionPlugin.deinitialize(swingGuiContext);
          }
        }
      }

      this.actionPlugins = PreviewPaneUtilities.loadActions(swingGuiContext);
View Full Code Here


        for (final ActionPlugin[] plugins : this.actionPlugins.values())
        {
          for (int i = 0; i < plugins.length; i++)
          {
            final ActionPlugin plugin = plugins[i];
            plugin.deinitialize(swingGuiContext);
            plugins[i] = null;
          }
        }
        this.actionPlugins = null;
      }
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.