Uses of Class
org.gjt.sp.jedit.Mode

Packages that use Mode
org.gjt.sp.jedit This package contains jEdit's core classes. 
org.gjt.sp.jedit.buffer Buffer event listeners, and classes used to implement jEdit's document model. 
org.gjt.sp.jedit.syntax The jEdit syntax highlighting engine. 
 

Uses of Mode in org.gjt.sp.jedit
 

Subclasses of Mode in org.gjt.sp.jedit
 class JEditMode
           
 

Methods in org.gjt.sp.jedit that return Mode
 Mode Buffer.getMode()
          Returns this buffer's edit mode.
static Mode jEdit.getMode(java.lang.String name)
          Returns the edit mode with the specified name.
static Mode[] jEdit.getModes()
          Returns an array of installed edit modes.
 

Methods in org.gjt.sp.jedit with parameters of type Mode
 void Buffer.setMode(Mode mode)
          Sets this buffer's edit mode.
 

Uses of Mode in org.gjt.sp.jedit.buffer
 

Fields in org.gjt.sp.jedit.buffer declared as Mode
protected  Mode JEditBuffer.mode
           
 

Uses of Mode in org.gjt.sp.jedit.syntax
 

Methods in org.gjt.sp.jedit.syntax that return Mode
 Mode ModeProvider.getMode(java.lang.String name)
          Returns the edit mode with the specified name.
 Mode[] ModeProvider.getModes()
          Returns an array of installed edit modes.
 

Methods in org.gjt.sp.jedit.syntax with parameters of type Mode
 void ModeProvider.addMode(Mode mode)
          Do not call this method.
 void ModeProvider.loadMode(Mode mode)
           
 void ModeProvider.loadMode(Mode mode, XModeHandler xmh)