Class Chart3DChangeEvent

java.lang.Object
java.util.EventObject
org.jfree.chart3d.Chart3DChangeEvent
All Implemented Interfaces:
Serializable

public class Chart3DChangeEvent extends EventObject
An event indicating some change in the attributes of a chart. Typically this indicates that the chart needs to be redrawn. Any object that implements the Chart3DChangeListener interface can register with a chart to receive change event notification.

NOTE: This class is serializable, but the serialization format is subject to change in future releases and should not be relied upon for persisting instances of this class.
See Also:
  • Constructor Details

    • Chart3DChangeEvent

      public Chart3DChangeEvent(Chart3D chart)
      Creates a new event.
      Parameters:
      chart - the chart that is the source of the event (null not permitted).
    • Chart3DChangeEvent

      public Chart3DChangeEvent(Object source, Chart3D chart)
      Creates a new event.
      Parameters:
      source - the source.
      chart - the chart that is the source of the event (null not permitted).
  • Method Details

    • getChart

      public Chart3D getChart()
      Returns the chart that this event is associated with.
      Returns:
      The chart (never null).