/* * AChart2DAction, base for actions to trigger on charts. * Copyright (C) 2007 - 2011 Achim Westermann, created on 10.12.2004, 13:48:55 * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * * If you modify or optimize the code in a useful way please let me know. * Achim.Westermann@gmx.de * */ package info.monitorenter.gui.chart.events; import info.monitorenter.gui.chart.Chart2D; import java.beans.PropertyChangeListener; import javax.swing.AbstractAction; /** * The base class that connects triggered actions with an * {@link info.monitorenter.gui.chart.Chart2D} instance. * <p> * Every subclass may delegate it's constructor-given <code>Chart2D</code> * instance as protected member <code>m_chart</code>. * <p> * * @author <a href="mailto:Achim.Westermann@gmx.de">Achim Westermann </a> * * @version $Revision: 1.6 $ * */ public abstract class AChart2DAction extends AbstractAction implements PropertyChangeListener { /** Generated <code>serialVersionUID</code>. **/ private static final long serialVersionUID = 1583028358015580585L; /** The target of this action. */ protected Chart2D m_chart; /** * Create an <code>Action</code> that accesses the chart and identifies itself * with the given action String. * * @param chart * the target the action will work on * @param description * the descriptive <code>String</code> that will be displayed by * {@link javax.swing.AbstractButton} subclasses that get this * <code>Action</code> assigned ( * {@link javax.swing.AbstractButton#setAction(javax.swing.Action)}). */ public AChart2DAction(final Chart2D chart, final String description) { super(description); this.m_chart = chart; } }