Uses of Class
org.gjt.sp.jedit.textarea.JEditTextArea

Packages that use JEditTextArea
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.msg EditBus messages. 
org.gjt.sp.jedit.textarea The classes in this package are in the process of being refactored, for jedit 4.3final. 
 

Uses of JEditTextArea in org.gjt.sp.jedit
 

Methods in org.gjt.sp.jedit that return JEditTextArea
 JEditTextArea View.getTextArea()
          Returns the current edit pane's text area.
 JEditTextArea EditPane.getTextArea()
          Returns the view's text area.
 

Methods in org.gjt.sp.jedit with parameters of type JEditTextArea
static void Registers.append(JEditTextArea textArea, char register)
          Appends the text selected in the text area to the specified register, with a newline between the old and new text.
static void Registers.append(JEditTextArea textArea, char register, java.lang.String separator)
          Appends the text selected in the text area to the specified register.
static void Registers.append(JEditTextArea textArea, char register, java.lang.String separator, boolean cut)
          Appends the text selected in the text area to the specified register.
static void Registers.copy(JEditTextArea textArea, char register)
          Copies the text selected in the text area into the specified register.
static void Registers.cut(JEditTextArea textArea, char register)
          Copies the text selected in the text area into the specified register, and then removes it from the buffer.
static void BeanShell.evalSelection(View view, JEditTextArea textArea)
          Evaluates the text selected in the specified text area.
static void Registers.paste(JEditTextArea textArea, char register)
          Insets the contents of the specified register into the text area.
static void Registers.paste(JEditTextArea textArea, char register, boolean vertical)
          Inserts the contents of the specified register into the text area.
 

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

Methods in org.gjt.sp.jedit.buffer with parameters of type JEditTextArea
 void JEditBuffer.redo(JEditTextArea textArea)
          Redoes the most recently undone edit.
 void JEditBuffer.undo(JEditTextArea textArea)
          Undoes the most recent edit.
 

Uses of JEditTextArea in org.gjt.sp.jedit.msg
 

Methods in org.gjt.sp.jedit.msg that return JEditTextArea
 JEditTextArea TextAreaUpdate.getTextArea()
           
 

Constructors in org.gjt.sp.jedit.msg with parameters of type JEditTextArea
CaretChanging(JEditTextArea jta)
           
TextAreaUpdate(JEditTextArea textArea, java.lang.String what)
           
 

Uses of JEditTextArea in org.gjt.sp.jedit.textarea
 

Methods in org.gjt.sp.jedit.textarea with parameters of type JEditTextArea
 void StatusListener.bracketSelected(JEditTextArea textArea, int line, java.lang.String text)
           
 StructureMatcher.Match StructureMatcher.getMatch(JEditTextArea textArea)
          Returns the element matching the one at the given text area's caret position, or null.
 StructureMatcher.Match StructureMatcher.BracketMatcher.getMatch(JEditTextArea textArea)
           
 void StatusListener.narrowActive(JEditTextArea textArea)
           
 void ScrollListener.scrolledHorizontally(JEditTextArea textArea)
           
 void ScrollListener.scrolledVertically(JEditTextArea textArea)
           
 void StructureMatcher.selectMatch(JEditTextArea textArea)
          Selects from the caret to the matching structure element (if there is one, otherwise the behavior of this method is undefined).
 void StructureMatcher.BracketMatcher.selectMatch(JEditTextArea textArea)
           
 void StatusListener.statusChanged(JEditTextArea textArea, int flag, boolean value)
           
 

Constructors in org.gjt.sp.jedit.textarea with parameters of type JEditTextArea
Gutter(JEditTextArea textArea)