org.gjt.sp.jedit.msg
Class CaretChanging

java.lang.Object
  extended by org.gjt.sp.jedit.EBMessage
      extended by org.gjt.sp.jedit.msg.TextAreaUpdate
          extended by org.gjt.sp.jedit.msg.CaretChanging

public class CaretChanging
extends TextAreaUpdate

a message emitted by various plugins, including CodeBrowser, Tags, CscopeFinder, and SideKick, whenever the plugin takes an action to change the caret to another location. It is not necessary to emit this signal when changing buffers, since the BufferChanging is automatically sent by jEdit. However, if you wish to navigate from one point in a buffer to another, without changing buffers, it is appropriate to EditBus.send(new CaretChanging(view.getTextArea()));

Since:
jEdit 4.3pre3

Field Summary
 
Fields inherited from class org.gjt.sp.jedit.msg.TextAreaUpdate
CARET_CHANGING
 
Constructor Summary
CaretChanging(JEditTextArea jta)
           
 
Method Summary
 
Methods inherited from class org.gjt.sp.jedit.msg.TextAreaUpdate
getTextArea, getWhat
 
Methods inherited from class org.gjt.sp.jedit.EBMessage
getSource, paramString, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CaretChanging

public CaretChanging(JEditTextArea jta)