sidekick
Class SideKick

java.lang.Object
  extended by sidekick.SideKick

public class SideKick
extends java.lang.Object

This is an EBComponent that manages a SideKick parser. Each jEdit View needs its own parser. SideKick is not a visible component itself, but rather, serves as the underlying data model for a tree in a dockable Component, as determined by dockables.xml. It happens to be sidekick.enhanced.SourceTree.


Field Summary
static java.lang.String AUTO_EXPAND_DEPTH
           
static java.lang.String BUFFER_CHANGE
           
static java.lang.String BUFFER_SAVE
           
static java.lang.String FILTER_VISIBLE
           
static java.lang.String FOLLOW_CARET
           
static java.lang.String SHOW_FILTER
           
static java.lang.String SHOW_STATUS
           
 
Method Summary
 void handleBufferChange(org.gjt.sp.jedit.msg.BufferChanging bmsg)
           
 void handleBufferUpdate(org.gjt.sp.jedit.msg.BufferUpdate bmsg)
           
 void handleEditorExiting(org.gjt.sp.jedit.msg.EditorExiting msg)
           
 void handleEditPaneUpdate(org.gjt.sp.jedit.msg.EditPaneUpdate epu)
           
 void handlePluginUpdate(org.gjt.sp.jedit.msg.PluginUpdate pmsg)
           
 void handlePropertiesChanged(org.gjt.sp.jedit.msg.PropertiesChanged msg)
           
 void handleViewUpdate(org.gjt.sp.jedit.msg.ViewUpdate vu)
           
static boolean isFollowCaret()
           
static boolean isGlobalFollowCaret()
           
static boolean isParseOnChange()
           
static boolean isParseOnSave()
           
static void setGlobalFollowCaret(boolean fc)
           
static void setParseOnChange(boolean val)
           
static void setParseOnSave(boolean val)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

BUFFER_CHANGE

public static final java.lang.String BUFFER_CHANGE
See Also:
Constant Field Values

BUFFER_SAVE

public static final java.lang.String BUFFER_SAVE
See Also:
Constant Field Values

FOLLOW_CARET

public static final java.lang.String FOLLOW_CARET
See Also:
Constant Field Values

AUTO_EXPAND_DEPTH

public static final java.lang.String AUTO_EXPAND_DEPTH
See Also:
Constant Field Values

SHOW_STATUS

public static final java.lang.String SHOW_STATUS
See Also:
Constant Field Values

FILTER_VISIBLE

public static final java.lang.String FILTER_VISIBLE
See Also:
Constant Field Values

SHOW_FILTER

public static final java.lang.String SHOW_FILTER
See Also:
Constant Field Values
Method Detail

isFollowCaret

public static boolean isFollowCaret()

isGlobalFollowCaret

public static boolean isGlobalFollowCaret()

setGlobalFollowCaret

public static void setGlobalFollowCaret(boolean fc)

setParseOnSave

public static void setParseOnSave(boolean val)

setParseOnChange

public static void setParseOnChange(boolean val)

isParseOnSave

public static boolean isParseOnSave()

isParseOnChange

public static boolean isParseOnChange()

handlePropertiesChanged

public void handlePropertiesChanged(org.gjt.sp.jedit.msg.PropertiesChanged msg)

handleEditorExiting

public void handleEditorExiting(org.gjt.sp.jedit.msg.EditorExiting msg)

handleBufferUpdate

public void handleBufferUpdate(org.gjt.sp.jedit.msg.BufferUpdate bmsg)

handleBufferChange

public void handleBufferChange(org.gjt.sp.jedit.msg.BufferChanging bmsg)

handleEditPaneUpdate

public void handleEditPaneUpdate(org.gjt.sp.jedit.msg.EditPaneUpdate epu)

handleViewUpdate

public void handleViewUpdate(org.gjt.sp.jedit.msg.ViewUpdate vu)

handlePluginUpdate

public void handlePluginUpdate(org.gjt.sp.jedit.msg.PluginUpdate pmsg)