mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Jean-Noël Rouvignac
20.36.2016 2a3158aad80fc910b83336485b3e545dea50066c
opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/MainActionsPane.java
@@ -12,7 +12,7 @@
 * information: "Portions Copyright [year] [name of copyright owner]".
 *
 * Copyright 2008-2009 Sun Microsystems, Inc.
 * Portions Copyright 2014-2015 ForgeRock AS.
 * Portions Copyright 2014-2016 ForgeRock AS.
 */
package org.opends.guitools.controlpanel.ui;
@@ -48,16 +48,12 @@
/**
 * The panel on the left side of the main Control Center dialog.  It contains
 * all the actions on the pane divided in categories.
 *
 */
public class MainActionsPane extends StatusGenericPanel
{
  private static final long serialVersionUID = 7616418700758530191L;
  /**
   * Default constructor.
   *
   */
  /** Default constructor. */
  public MainActionsPane()
  {
    super();
@@ -87,7 +83,7 @@
        actions.add(b);
        b.addActionListener(new ActionListener()
        {
          /** {@inheritDoc} */
          @Override
          public void actionPerformed(ActionEvent ev)
          {
            // Constructs the panels using reflection.
@@ -152,7 +148,7 @@
    createActionButtonListeners(actions);
  }
  /** {@inheritDoc} */
  @Override
  public Component getPreferredFocusComponent()
  {
    return null;
@@ -294,7 +290,7 @@
  {
    ActionListener actionListener = new ActionListener()
    {
      /** {@inheritDoc} */
      @Override
      public void actionPerformed(ActionEvent ev)
      {
        for (ActionButton button : actions)
@@ -310,7 +306,7 @@
    MouseAdapter mouseListener = new MouseAdapter()
    {
      /** {@inheritDoc} */
      @Override
      public void mousePressed(MouseEvent ev)
      {
        for (ActionButton button : actions)
@@ -323,7 +319,7 @@
        }
      }
      /** {@inheritDoc} */
      @Override
      public void mouseReleased(MouseEvent ev)
      {
        for (ActionButton button : actions)
@@ -336,7 +332,7 @@
        }
      }
      /** {@inheritDoc} */
      @Override
      public void mouseExited(MouseEvent ev)
      {
        for (ActionButton button : actions)
@@ -349,7 +345,7 @@
        }
      }
      /** {@inheritDoc} */
      @Override
      public void mouseEntered(MouseEvent ev)
      {
        for (ActionButton button : actions)
@@ -373,19 +369,19 @@
    }
  }
  /** {@inheritDoc} */
  @Override
  public LocalizableMessage getTitle()
  {
    return null;
  }
  /** {@inheritDoc} */
  @Override
  public void configurationChanged(ConfigurationChangeEvent ev)
  {
  }
  /** {@inheritDoc} */
  @Override
  public void okClicked()
  {
  }