Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 


Eclipse Platform
Release 3.5

Uses of Class
org.eclipse.text.edits.TextEdit

Packages that use TextEdit
org.eclipse.core.filebuffers.manipulation Provides the API for manipulating file buffers. 
org.eclipse.jface.text Provides a framework for creating and manipulating text documents. 
org.eclipse.ltk.core.refactoring Application programmer interface to implement semantic preserving workspace transformations. 
org.eclipse.text.edits Provides support for describing and applying textual document editions. 
 

Uses of TextEdit in org.eclipse.core.filebuffers.manipulation
 

Subclasses of TextEdit in org.eclipse.core.filebuffers.manipulation
 class MultiTextEditWithProgress
          Multi-text edit with progress reporting.
 

Uses of TextEdit in org.eclipse.jface.text
 

Methods in org.eclipse.jface.text with parameters of type TextEdit
static boolean RewriteSessionEditProcessor. isLargeEdit ( TextEdit edit)
          Returns true if the passed edit is considered large, false otherwise.
 

Constructors in org.eclipse.jface.text with parameters of type TextEdit
RewriteSessionEditProcessor ( IDocument document, TextEdit root, int style)
          Constructs a new edit processor for the given document.
 

Uses of TextEdit in org.eclipse.ltk.core.refactoring
 

Methods in org.eclipse.ltk.core.refactoring that return TextEdit
  TextEdit TextChange. getEdit ()
          Returns the root text edit.
  TextEdit TextChange. getPreviewEdit ( TextEdit original)
          Returns the edit that got executed during preview generation instead of the given original.
  TextEdit[] TextChange. getPreviewEdits ( TextEdit[] originals)
          Returns the edits that were executed during preview generation instead of the given array of original edits.
  TextEdit[] TextEditBasedChangeGroup. getTextEdits ()
          Returns the text edits managed by the underlying text edit group.
 

Methods in org.eclipse.ltk.core.refactoring with parameters of type TextEdit
 void TextChange. addEdit ( TextEdit edit)
          Adds the given edit to the edit tree.
  TextEdit TextChange. getPreviewEdit ( TextEdit original)
          Returns the edit that got executed during preview generation instead of the given original.
  TextEdit[] TextChange. getPreviewEdits ( TextEdit[] originals)
          Returns the edits that were executed during preview generation instead of the given array of original edits.
 void TextChange. setEdit ( TextEdit edit)
          Sets the root text edit that should be applied to the document represented by this text change.
 

Constructors in org.eclipse.ltk.core.refactoring with parameters of type TextEdit
CategorizedTextEditGroup ( String name, TextEdit[] edits, GroupCategorySet groupCategories)
          Creates a new text edit group with the given name, array of edits and a set of group categories.
CategorizedTextEditGroup ( String name, TextEdit edit, GroupCategorySet groupCategories)
          Creates a new text edit group with a name, a single TextEdit and a set of group categories.
 

Uses of TextEdit in org.eclipse.text.edits
 

Subclasses of TextEdit in org.eclipse.text.edits
 class CopyingRangeMarker
          A CopyingRangeMarker can be used to track positions when executing text edits.
 class CopySourceEdit
          A copy source edit denotes the source of a copy operation.
 class CopyTargetEdit
          A copy target edit denotes the target of a copy operation.
 class DeleteEdit
          Text edit to delete a range in a document.
 class InsertEdit
          Text edit to insert a text at a given position in a document.
 class MoveSourceEdit
          A move source edit denotes the source of a move operation.
 class MoveTargetEdit
          A move target edit denotes the target of a move operation.
 class MultiTextEdit
          A multi-text edit can be used to aggregate several edits into one edit.
 class RangeMarker
          A range marker can be used to track positions when executing text edits.
 class ReplaceEdit
          Text edit to replace a range in a document with a different string.
 class UndoEdit
          This class encapsulates the reverse changes of an executed text edit tree.
 

Methods in org.eclipse.text.edits that return TextEdit
  TextEdit TextEdit. copy ()
          Creates a deep copy of the edit tree rooted at this edit.
protected   TextEdit ReplaceEdit. doCopy ()
           
protected   TextEdit DeleteEdit. doCopy ()
           
protected   TextEdit RangeMarker. doCopy ()
           
protected   TextEdit CopyingRangeMarker. doCopy ()
           
protected   TextEdit UndoEdit. doCopy ()
           
protected   TextEdit MoveTargetEdit. doCopy ()
           
protected   TextEdit InsertEdit. doCopy ()
           
protected abstract   TextEdit TextEdit. doCopy ()
          Creates and returns a copy of this edit.
protected   TextEdit MultiTextEdit. doCopy ()
           
protected   TextEdit CopySourceEdit. doCopy ()
           
protected   TextEdit MoveSourceEdit. doCopy ()
           
protected   TextEdit CopyTargetEdit. doCopy ()
           
  TextEdit MalformedTreeException. getChild ()
          Returns the child edit that caused the exception.
  TextEdit[] TextEdit. getChildren ()
          Returns the edit's children.
  TextEdit TextEditCopier. getCopy ( TextEdit original)
          Returns the copy for the original text edit.
  TextEdit TextEdit. getParent ()
          Returns the edit's parent.
  TextEdit MalformedTreeException. getParent ()
          Returns the parent edit that caused the exception.
  TextEdit TextEditProcessor. getRoot ()
          Returns the edit processor's root edit.
  TextEdit TextEdit. getRoot ()
          Returns the root edit of the edit tree.
  TextEdit[] TextEditGroup. getTextEdits ()
          Returns an array of TextEdits containing the edits managed by this group.
  TextEdit TextEditCopier. perform ()
          Performs the actual copying.
  TextEdit TextEdit. removeChild (int index)
          Removes the edit specified by the given index from the list of children.
  TextEdit[] TextEdit. removeChildren ()
          Removes all child edits from and returns them.
 

Methods in org.eclipse.text.edits with parameters of type TextEdit
 void TextEdit. addChild ( TextEdit child)
          Adds the given edit child to this edit.
 void TextEdit. addChildren ( TextEdit[] edits)
          Adds all edits in edits to this edit.
 void TextEditGroup. addTextEdit ( TextEdit edit)
          Adds the given TextEdit to this group.
protected  boolean TextEditProcessor. considerEdit ( TextEdit edit)
          Tells whether this processor considers the given edit.
 boolean TextEdit. covers ( TextEdit other)
          Returns true if the edit covers the given edit other.
 boolean MultiTextEdit. covers ( TextEdit other)
          Returns true if the edit covers the given edit other.
  TextEdit TextEditCopier. getCopy ( TextEdit original)
          Returns the copy for the original text edit.
static  IRegion TextEdit. getCoverage ( TextEdit[] edits)
          Returns the text range spawned by the given array of text edits.
static  IRegion MoveSourceEdit. intersect ( TextEdit op1, TextEdit op2)
           
 void TextEditVisitor. postVisit ( TextEdit edit)
          Visits the given text edit following the type-specific visit (after endVisit).
 void TextEditVisitor. preVisit ( TextEdit edit)
          Visits the given text edit prior to the type-specific visit.
 boolean TextEdit. removeChild ( TextEdit child)
          Removes the first occurrence of the given child from the list of children.
 boolean TextEditGroup. removeTextEdit ( TextEdit edit)
          Removes the given TextEdit from this group.
 boolean TextEditVisitor. visitNode ( TextEdit edit)
          Visits the given text edit.
 

Constructors in org.eclipse.text.edits with parameters of type TextEdit
MalformedTreeException ( TextEdit parent, TextEdit child, String message)
          Constructs a new malformed tree exception.
TextEdit ( TextEdit source)
          Copy constructor
TextEditCopier ( TextEdit edit)
          Constructs a new TextEditCopier for the given edit.
TextEditGroup ( String name, TextEdit edit)
          Creates a new text edit group with a name and a single TextEdit.
TextEditGroup ( String name, TextEdit[] edits)
          Creates a new text edit group with the given name and array of edits.
TextEditProcessor ( IDocument document, TextEdit root, int style)
          Constructs a new edit processor for the given document.
 


Eclipse Platform
Release 3.5

Guidelines for using Eclipse APIs.

Copyright (c) Eclipse contributors and others 2000, 2008. All rights reserved.


 
 
  Published under the terms of the Eclipse Public License Version 1.0 ("EPL") Design by Interspire