public class Plot3DChangeEvent extends java.util.EventObject
Plot3D. Any object that
implements the Plot3DChangeListener interface can register with a
plot to receive change notifications. By default, the Chart3D
object will register with the plot it manages to monitor changes to the plot
and its subcomponents.
| Constructor and Description |
|---|
Plot3DChangeEvent(java.lang.Object source,
Plot3D plot,
boolean requiresWorldUpdate)
Creates a new event.
|
| Modifier and Type | Method and Description |
|---|---|
Plot3D |
getPlot()
Returns the plot from which the event came.
|
boolean |
requiresWorldUpdate()
Returns the flag indicating whether or not this change event
requires the world to be updated/recreated.
|
public Plot3DChangeEvent(java.lang.Object source, Plot3D plot, boolean requiresWorldUpdate)
source of the event can be
either the plot instance or another event that was received by the
plot (for example, a Dataset3DChangeEvent).source - the event source (null not permitted).plot - the plot (null not permitted).requiresWorldUpdate - a flag that indicates whether or not the
world requires updating because of this change.public Plot3D getPlot()
null).public boolean requiresWorldUpdate()