Class ViewUpdate


  • public class ViewUpdate
    extends EBMessage
    Message sent when a view-related change occurs.
    Since:
    jEdit 2.2pre6
    Version:
    $Id: ViewUpdate.java 21831 2012-06-18 22:54:17Z ezust $
    Author:
    Slava Pestov
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.Object ACTIVATED
      Active view changed.
      static java.lang.Object CLOSED
      View closed.
      static java.lang.Object CREATED
      View created.
      static java.lang.Object EDIT_PANE_CHANGED
      Active edit pane changed.
    • Constructor Summary

      Constructors 
      Constructor Description
      ViewUpdate​(View view, java.lang.Object what)
      Creates a new view update message.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      View getView()
      Returns the view involved.
      java.lang.Object getWhat()
      Returns what caused this view update.
      java.lang.String paramString()
      Returns a string representation of this message's parameters.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • CREATED

        public static final java.lang.Object CREATED
        View created.
      • CLOSED

        public static final java.lang.Object CLOSED
        View closed.
      • EDIT_PANE_CHANGED

        public static final java.lang.Object EDIT_PANE_CHANGED
        Active edit pane changed.
        Since:
        jEdit 4.1pre1
      • ACTIVATED

        public static final java.lang.Object ACTIVATED
        Active view changed.
        Since:
        jEdit 4.3pre4
    • Constructor Detail

      • ViewUpdate

        public ViewUpdate​(View view,
                          java.lang.Object what)
        Creates a new view update message.
        Parameters:
        view - The view
        what - What happened
    • Method Detail

      • getWhat

        public java.lang.Object getWhat()
        Returns what caused this view update.
      • getView

        public View getView()
        Returns the view involved.
      • paramString

        public java.lang.String paramString()
        Description copied from class: EBMessage
        Returns a string representation of this message's parameters.
        Overrides:
        paramString in class EBMessage