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

Packages that use TextArea
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.input   
org.gjt.sp.jedit.msg EditBus messages. 
org.gjt.sp.jedit.textarea Since jEdit 4.2, many TextArea classes have been split into a base and derived class. 
 

Uses of TextArea in org.gjt.sp.jedit
 

Methods in org.gjt.sp.jedit that return TextArea
static TextArea jEdit.createTextArea()
          Deprecated. use new JEditEmbeddedTextArea() instead
 

Methods in org.gjt.sp.jedit with parameters of type TextArea
static void Registers.append(TextArea 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(TextArea textArea, char register, java.lang.String separator)
          Appends the text selected in the text area to the specified register.
static void Registers.append(TextArea 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(TextArea textArea, char register)
          Copies the text selected in the text area into the specified register.
static void Registers.cut(TextArea textArea, char register)
          Copies the text selected in the text area into the specified register, and then removes it from the buffer.
 void BeanShellFacade.evalSelection(T param, TextArea textArea)
          Evaluates the text selected in the specified text area.
static EditPane EditPane.get(TextArea ta)
          Returns the EditPane of a TextArea.
 void JEditBeanShellAction.invoke(TextArea textArea)
           
static void Registers.paste(TextArea textArea, char register)
          Insets the contents of the specified register into the text area.
static void Registers.paste(TextArea textArea, char register, boolean vertical)
          Inserts the contents of the specified register into the text area.
 

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

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

Uses of TextArea in org.gjt.sp.jedit.input
 

Constructors in org.gjt.sp.jedit.input with parameters of type TextArea
TextAreaInputHandler(TextArea textArea)
           
 

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

Constructors in org.gjt.sp.jedit.msg with parameters of type TextArea
PositionChanging(TextArea textArea)
           
 

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

Subclasses of TextArea in org.gjt.sp.jedit.textarea
 class JEditEmbeddedTextArea
          An embeddable TextArea for jEdit plugins to use.
 class JEditTextArea
          jEdit's text component.
 class StandaloneTextArea
          jEdit's standalone text component.
 

Fields in org.gjt.sp.jedit.textarea declared as TextArea
protected  TextArea TextAreaMouseHandler.textArea
           
 

Methods in org.gjt.sp.jedit.textarea with parameters of type TextArea
 void StatusListener.bracketSelected(TextArea textArea, int line, java.lang.String text)
           
 StructureMatcher.Match StructureMatcher.getMatch(TextArea textArea)
          Returns the element matching the one at the given text area's caret position, or null.
 StructureMatcher.Match StructureMatcher.BracketMatcher.getMatch(TextArea textArea)
           
 void StatusListener.narrowActive(TextArea textArea)
           
 void ScrollListener.scrolledHorizontally(TextArea textArea)
           
 void ScrollListener.scrolledVertically(TextArea textArea)
           
 void StructureMatcher.selectMatch(TextArea 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(TextArea textArea)
           
 void StatusListener.statusChanged(TextArea textArea, int flag, boolean value)
           
 

Constructors in org.gjt.sp.jedit.textarea with parameters of type TextArea
Gutter(TextArea textArea)
           
StandaloneTextArea.StandaloneActionSet(IPropertyManager iPropertyManager, TextArea textArea, java.net.URL url)