us.ihmc.simulationconstructionset.gui.actions.configActions.SelectVarGroupAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simulation-construction-set
Show all versions of simulation-construction-set
Simulation Construction Set
package us.ihmc.simulationconstructionset.gui.actions.configActions;
import java.awt.event.ActionEvent;
import javax.swing.AbstractAction;
import javax.swing.Action;
import us.ihmc.simulationconstructionset.gui.config.VarGroupSelector;
public class SelectVarGroupAction extends AbstractAction
{
private static final long serialVersionUID = 7027661415555951268L;
private String name;
private VarGroupSelector varGroupSelector;
public SelectVarGroupAction(VarGroupSelector selector, String name)
{
super(name);
varGroupSelector = 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)
{
varGroupSelector.selectVarGroup(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy