us.ihmc.simulationconstructionset.gui.actions.CutBufferAction 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;
import java.awt.event.ActionEvent;
import java.awt.event.KeyEvent;
import javax.swing.AbstractAction;
import javax.swing.Action;
import us.ihmc.simulationconstructionset.commands.CutBufferCommandExecutor;
public class CutBufferAction extends AbstractAction
{
private static final long serialVersionUID = 5039888169851613916L;
private CutBufferCommandExecutor executor;
public CutBufferAction(CutBufferCommandExecutor executor)
{
super("Cut Buffer Between In/Out");
this.executor = executor;
putValue(Action.MNEMONIC_KEY, new Integer(KeyEvent.VK_C));
putValue(Action.LONG_DESCRIPTION, "Long Description");
putValue(Action.SHORT_DESCRIPTION, "Short Description");
}
@Override
public void actionPerformed(ActionEvent actionEvent)
{
executor.cutBuffer();
}
}