Class RinearnGraph3DEventDispatcher

java.lang.Object
com.rinearn.graph3d.event.RinearnGraph3DEventDispatcher
All Implemented Interfaces:
com.rinearn.rxg3dlegacyimpl.RG3DPlotListener

public class RinearnGraph3DEventDispatcher extends Object implements com.rinearn.rxg3dlegacyimpl.RG3DPlotListener
イベントをディスパッチするために使用されるクラスです (APIのユーザーがこのクラスを使用する必要はありません) The class for dispatching events (users of API should not use this class) .
このクラスの仕様は, 予告なく変更される可能性があります.
Note that, the specifications of this class may change in future without any notice.
  • Constructor Summary

    Constructors
    Constructor
    Description
    指定された RinearnGraph3D インスタンスを source とする, 新しいイベントディスパッチャーを生成します Creates a new event dispatcher of which source is the specified RinearnGraph3D instance .
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    プロットイベントのリスナーを追加登録します Adds the plotting event listener .
    void
    登録されている全てのプロットイベントのリスナーに対して, plottingCanceled メソッドを呼び出します Calls the 'plottingCanceled' method for all registered plotting event listeners .
    void
    登録されている全てのプロットイベントのリスナーに対して, plottingFinished メソッドを呼び出します Calls the 'plottingFinished' method for all registered plotting event listeners .
    void
    登録されている全てのプロットイベントのリスナーに対して, plottingRequested メソッドを呼び出します Calls the 'plottingRequested' method for all registered plotting event listeners .

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • RinearnGraph3DEventDispatcher

      public RinearnGraph3DEventDispatcher(RinearnGraph3D source)
      指定された RinearnGraph3D インスタンスを source とする, 新しいイベントディスパッチャーを生成します Creates a new event dispatcher of which source is the specified RinearnGraph3D instance .
      Parameters:
      source - イベントの source とする RinearnGraph3D インスタンス The RinearnGraph3D instance as the source of events
  • Method Details

    • addPlottingListener

      public void addPlottingListener(RinearnGraph3DPlottingListener listener)
      プロットイベントのリスナーを追加登録します Adds the plotting event listener .
      Parameters:
      listener - プロットイベントのリスナー The plotting event listener
    • plottingRequested

      public void plottingRequested()
      登録されている全てのプロットイベントのリスナーに対して, plottingRequested メソッドを呼び出します Calls the 'plottingRequested' method for all registered plotting event listeners .
      Specified by:
      plottingRequested in interface com.rinearn.rxg3dlegacyimpl.RG3DPlotListener
    • plottingCanceled

      public void plottingCanceled()
      登録されている全てのプロットイベントのリスナーに対して, plottingCanceled メソッドを呼び出します Calls the 'plottingCanceled' method for all registered plotting event listeners .
      Specified by:
      plottingCanceled in interface com.rinearn.rxg3dlegacyimpl.RG3DPlotListener
    • plottingFinished

      public void plottingFinished()
      登録されている全てのプロットイベントのリスナーに対して, plottingFinished メソッドを呼び出します Calls the 'plottingFinished' method for all registered plotting event listeners .
      Specified by:
      plottingFinished in interface com.rinearn.rxg3dlegacyimpl.RG3DPlotListener