Example usage for org.jfree.chart.event AxisChangeListener getClass

List of usage examples for org.jfree.chart.event AxisChangeListener getClass

Introduction

In this page you can find the example usage for org.jfree.chart.event AxisChangeListener getClass.

Prototype

@HotSpotIntrinsicCandidate
public final native Class<?> getClass();

Source Link

Document

Returns the runtime class of this Object .

Usage

From source file:org.fhcrc.cpl.viewer.mrm.utilities.CenterZoomNumberAxis.java

public void addChangeListener(AxisChangeListener listener) {
    super.addChangeListener(listener);
    if (listener.getClass() == MRMDialog.domainAxisZoomCoordinator.class) {
        setTheListener((MRMDialog.domainAxisZoomCoordinator) listener);
    }/*from w w  w  .  j  ava2 s .  c  o m*/
}