package bluej.editor;

import bluej.editor.moe.MoeSyntaxDocument;
import bluej.parser.SourceLocation;
import bluej.parser.nodes.ParsedCUNode;
import threadchecker.OnThread;
import threadchecker.Tag;

import java.nio.charset.Charset;

@OnThread(Tag.FXPlatform)
public interface TextEditor
extends Editor{    
   
| Read a file into the editor buffer and show the editor. If the editor | already contains text, it is cleared first. If the file cannot be read, | the editor should not be displayed. | | @param filename the file to be read | @param compiled true if this is a compiled class | | @return false is there was a problem, true otherwise | p.public boolean showFile(String filename, Charset charset, boolean compiled, String docFilename);
| Clear the current buffer. The editor is not redisplayed after a call to | this function. It is typically used in a sequence "clear; [insertText]; |* show". */ void clear(); /** * Insert a string into the buffer. The editor is not immediately * redisplayed. This function is typically used in a sequence "clear; * [insertText]; show". * * @param text the text to be inserted * @param caretBack move the caret to the beginning of the inserted text */ public defVis void insertText(String text, boolean caretBack); | |/** | Set the selection of the editor to be a len characters on the line | lineNumber, starting with column columnNumber | | @param lineNumber the line to select characters on | @param column the column to start selection at (1st column is 1 - not 0) | @param len the number of characters to select | p.public void setSelection(int lineNumber, int column, int len);
| Request to the editor to mark the text between begin and end as selected. | | @param begin where to start the selection | @param end where to end the selection | @throws IllegalArgumentException if either of the specified TextLocations | represent a position which does not exist in the text. | public void setSelection(SourceLocation begin, SourceLocation end);
| Set the selection of the editor to be a len characters on the line | lineNumber, starting with column columnNumber | | @param lineNumber the line to select characters on | @param column the column to start selection at (1st column is 1 - not 0) | @param len the number of characters to select | p.public void setSelection(int firstlineNumber, int firstColumn, int secondLineNumber, int SecondColumn);
| Get the source document that this editor is currently editing. Certain | operations (such as reload) might change the document; that is, the | returned document may become invalid at some later point in time. | | @return the document being edited. | MoeSyntaxDocument getSourceDocument();
| Returns the current caret location within the edited text. | | @return the LineColumn object. | public SourceLocation getCaretLocation();
| Sets the current Caret location within the edited text. | | @param location The location in the text to set the Caret to. | @throws IllegalArgumentException if the specified TextLocation represents a position which does not exist in the text. | public void setCaretLocation(SourceLocation location);
| Returns the location at which current selection begins. | | @return the current beginning of the selection or null if no text is selected. | public SourceLocation getSelectionBegin();
| Returns the location where the current selection ends. | | @return the current end of the selection or null if no text is selected. | public SourceLocation getSelectionEnd();
| Returns the text which lies between the two LineColumn. | | @param begin The beginning of the text to get | @param end The end of the text to get | @return The text value | @throws IllegalArgumentException if either of the specified SourceLocations represent a position which does not exist in the text. | public String getText( SourceLocation begin, SourceLocation end );
| Request to the editor to replace the text between beginning and end with the given newText | If begin and end points to the same location, the text is inserted. | | @param begin where to start to replace | @param end where to end to replace | @param newText The new text value | @throws IllegalArgumentException if either of the specified LineColumn | represent a position which does not exist in the text. | @throws BadLocationException if internally the text points outside a location in the text. | public void setText(SourceLocation begin, SourceLocation end, String newText);
| Returns the LineColumn object from the given offset in the text. | | @return the LineColumn object or null if the offset points outside the text. | public SourceLocation getLineColumnFromOffset(int offset);
| Translates a LineColumn into an offset into the text held by the editor. | | @param location position to be translated | @return the offset into the content of this editor | @throws IllegalArgumentException if the specified LineColumn | represent a position which does not exist in the text. | public int getOffsetFromLineColumn(SourceLocation location);
| Returns the length of the line indicated in the edited text. | | @param line the line in the text for which the length should be calculated, starting from 0 | @return the length of the line, -1 if line is invalid | public int getLineLength(int line);
| Return the number of lines in the document. | public int numberOfLines();
| Returns the length of the data. This is the number of | characters of content that represents the users data. | | It is possible to obtain the line and column of the last character of text by using | the getLineColumnFromOffset() method. | | @return the length >= 0 | public int getTextLength();
| Get a node representing the the parsed structure of the source | document as a tree. | | @return A ParsedNode instance, or null if not supported. | public ParsedCUNode getParsedNode(); }
top, use, map, interface TextEditor

.   showFile
.   setSelection
.   setSelection
.   setSelection
.   getCaretLocation
.   setCaretLocation
.   getSelectionBegin
.   getSelectionEnd
.   getText
.   setText
.   getLineColumnFromOffset
.   getOffsetFromLineColumn
.   getLineLength
.   numberOfLines
.   getTextLength
.   getParsedNode




86 neLoCode + 69 LoComm