Interface PEditorEventListener

    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      void destroy()
      Deprecated.
      Cleans up anything created by this listener in init.
      void init()
      Deprecated.
      Initializes this listener.
      void start()
      Deprecated.
      Starts the listener.
      void stop()
      Deprecated.
      Stops the listener.
      • Methods inherited from interface org.piccolo2d.event.PInputEventListener

        processEvent
    • Method Detail

      • init

        void init()
        Deprecated.
        Initializes this listener. This happens only once whereas start / stop may occur multiple times.
      • start

        void start()
        Deprecated.
        Starts the listener. At the very least this should add the listener to whatever PNode it is listening on.
      • stop

        void stop()
        Deprecated.
        Stops the listener. At the very least this should remove the listener to whatever PNode it is listening on.
      • destroy

        void destroy()
        Deprecated.
        Cleans up anything created by this listener in init. This happens only once whereas start / stop may occur multiple times.