All Downloads are FREE. Search and download functionalities are using the official Maven repository.

us.ihmc.simulationconstructionset.gui.actions.dialogActions.SelectEntryBoxGroupAction Maven / Gradle / Ivy

There is a newer version: 0.25.2
Show newest version
package us.ihmc.simulationconstructionset.gui.actions.dialogActions;

import java.awt.event.ActionEvent;

import javax.swing.AbstractAction;
import javax.swing.Action;

import us.ihmc.simulationconstructionset.gui.config.EntryBoxGroupSelector;

public class SelectEntryBoxGroupAction extends AbstractAction
{
   private static final long serialVersionUID = 2957716760331114426L;
   private String name;
   private EntryBoxGroupSelector selector;

   public SelectEntryBoxGroupAction(EntryBoxGroupSelector selector, String name)
   {
      super(name);

      this.selector = selector;
      this.name = name;

      // this.putValue(Action.MNEMONIC_KEY, new Integer(KeyEvent.VK_E));
      putValue(Action.LONG_DESCRIPTION, "Long Description");
      putValue(Action.SHORT_DESCRIPTION, "Short Description");
   }

   @Override
   public void actionPerformed(ActionEvent e)
   {
      selector.selectEntryBoxGroup(name);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy