/* * Scute * * Homepage: http://hyperdata.org/scute * * License : http://www.apache.org/licenses/LICENSE-2.0 * See also license.txt or http://hyperdata.org/wiki/Scute:License * * Danny Ayers 2011 */ package org.hyperdata.scute.tree.actions; import java.awt.event.ActionEvent; import javax.swing.AbstractAction; /** * The Class CutAction. */ public class CutAction extends AbstractAction { /** The Constant serialVersionUID. */ private static final long serialVersionUID = -5184007514417538233L; /* (non-Javadoc) * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent) */ @Override public void actionPerformed(ActionEvent arg0) { } }