List of usage examples for java.awt.event ActionListener interface-usage
From source file com.excilys.ebi.gatling.recorder.ui.component.ConfigurationValidatorListener.java
public class ConfigurationValidatorListener implements ActionListener { private static final Logger logger = LoggerFactory.getLogger(ConfigurationValidatorListener.class); private final ConfigurationFrame frame;
From source file org.eurocarbdb.application.glycoworkbench.plugin.PeakAnnotationReportPanel.java
public class PeakAnnotationReportPanel extends DocumentPanel<AnnotatedPeakList> implements ActionListener { // components protected DefaultXYDataset theDataset; protected XYPlot thePlot; protected JFreeChart theChart;
From source file org.encog.workbench.tabs.weights.AnalyzeWeightsTab.java
public class AnalyzeWeightsTab extends EncogCommonTab implements ActionListener { /** * */ private static final long serialVersionUID = 4472644832610364833L;
From source file org.jets3t.gui.ProgressDialog.java
/**
* A modal dialog box to display progress information to the user when a long-lived task
* is running. If the long-lived task can be cancelled by the user, this dialog will invoke
* the {@link CancelEventTrigger} when the user clicks the cancel button.
*
* @author James Murty
From source file org.opendatakit.briefcase.ui.ScrollingStatusListDialog.java
public class ScrollingStatusListDialog extends JDialog implements ActionListener { private static final long serialVersionUID = 3565952263140071560L; private static final Log LOG = LogFactory.getLog(ScrollingStatusListDialog.class.getName()); private final JEditorPane editorArea; private final IFormDefinition form;
From source file com.haskins.cloudtrailviewer.sidebar.EventsChart.java
/** * * @author mark.haskins */ public class EventsChart extends AbstractChart implements ActionListener {
From source file org.apache.cassandra.contrib.circuit.CircuitFrame.java
public class CircuitFrame extends JFrame implements ActionListener { private static final long serialVersionUID = 1L; private static final String appTitle = "Circuit"; private static final Dimension defaultSize = new Dimension(550, 600); private static final FastDateFormat DATE_FORMATTER = FastDateFormat.getInstance("HH:mm:ss");
From source file SwingThreading.java
/** * @author Romain Guy */ public class SwingThreading extends JFrame implements ActionListener { private JLabel counter;
From source file com.seagate.kinetic.monitor.view.KineticSpecifiedNodeView.java
public class KineticSpecifiedNodeView extends AbstractKineticStatView implements ActionListener { public static final String SYSTEM_TOTAL_IOPS_AND_THROUGHPUT_STATISTICS = "system total iops and throughput statistics"; private static final long serialVersionUID = 1L; private static final int MAX_TIMESERIES_ITEM_COUNT = 240; private TimeSeries putOpsTs = new TimeSeries("Put kvop/s"); private TimeSeries putTrgTs = new TimeSeries("Put MB/s");
From source file org.jfree.graphics2d.demo.SwingUIToSVGDemo.java
/** * This demo shows how to export a Swing UI to SVG. */ public class SwingUIToSVGDemo extends JFrame implements ActionListener { public SwingUIToSVGDemo(String title) {