- getChar() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Returns the character at the current position.
- getColumn() - Method in class se.biltmore.tools.fileeditor.Position
-
Returns the current column number.
- getEnd() - Method in class se.biltmore.tools.fileeditor.Selection
-
Returns the end of the selection.
- getLine() - Method in class se.biltmore.tools.fileeditor.Position
-
Returns the number of current line.
- getLine(int) - Method in interface se.biltmore.tools.fileeditor.TextBuffer
-
Gets a specific line from the buffer.
- getLine(int) - Method in class se.biltmore.tools.fileeditor.TextFileBuffer
-
Gets a specific line from the buffer.
- getLine(int) - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Returns the specified line.
- getLine() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Returns the current line.
- getLineText() - Method in class se.biltmore.tools.fileeditor.Occurence
-
Returns the lines text.
- getPosition() - Method in class se.biltmore.tools.fileeditor.Occurence
-
Returns the line number represented by this Occurence.
- getPosition() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Returns the current position.
- getSelectedText() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Returns the selection as a TextBuffer.
- getSelectedTextAsString() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Returns the selection as a String including '\n' character at end of line for multi line selections.
- getSelection() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Returns the current selection.
- getSize() - Method in interface se.biltmore.tools.fileeditor.TextBuffer
-
Returns the number of lines in the buffer.
- getSize() - Method in class se.biltmore.tools.fileeditor.TextFileBuffer
-
Returns the number of lines in the buffer.
- getStart() - Method in class se.biltmore.tools.fileeditor.Selection
-
Returns the start of the selection.l
- getSubString(int, int, int) - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Returns a substring of the specified line.
- getSubString(int, int) - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Returns a substring of the current line.
- getTextBuffer() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Returns the currently edited buffer.
- getWord() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Returns the current word, and positions the current position at the beginning of the word.
- moveDown(int) - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Moves the current position down.
- moveLeft(int) - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Move the current position left.
- moveRight(int) - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Move the current position right.
- moveToAndReturnNextChar() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Moves to the right and returns the next character.
- moveToAndReturnNextWord() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Moves to the next word and returns it.
- moveToAndReturnPrevWord() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Moves to the previous word and returns it.
- moveToBeginningOfLine() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Moves the current position to the beginning of the line.
- moveToBottomOfFile() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Moves the current position to the bottom of the file at 0,last-line.
- moveToEndOfFile() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Moves the current position to the end of the file at last-column,last-line.
- moveToEndOfLine() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Moves the current position to the end of the line.
- moveToMatching(char, char) - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Moves to the next "end" character at the 0 level.
- moveToNextChar() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Moves to the next character in the buffer being edited.
- moveToPrevChar() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Moves to the previous character in the buffer being edited.
- moveToTopOfFile() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Moves the current position to the top of the file at 0,0.
- moveUp(int) - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Moves the current positon up.
- moveWordsLeft(int) - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Moves the current position the specified number of words left and returns true if this was possible.
- moveWordsRight(int) - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Moves the current position the specified number of words right and returns true if this was possible.
- save() - Method in interface se.biltmore.tools.fileeditor.TextBuffer
-
Saves the buffer back to disk again.
- save() - Method in class se.biltmore.tools.fileeditor.TextFileBuffer
-
Saves the buffer back to disk again.
- save() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Saves the current buffer.
- saveAs(String) - Method in interface se.biltmore.tools.fileeditor.TextBuffer
-
Saves the buffer to another file.
- saveAs(File) - Method in class se.biltmore.tools.fileeditor.TextFileBuffer
-
Saves the buffer to another file.
- saveAs(String) - Method in class se.biltmore.tools.fileeditor.TextFileBuffer
-
Saves the buffer to another file.
- saveAs(File) - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Saves the current buffer to a new file.
- saveAs(String) - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Saves the current buffer to a new file.
- se.biltmore.tools.fileeditor - package se.biltmore.tools.fileeditor
-
- Selection - Class in se.biltmore.tools.fileeditor
-
- Selection() - Constructor for class se.biltmore.tools.fileeditor.Selection
-
Creates a new instance of Selection.
- Selection(Position, Position) - Constructor for class se.biltmore.tools.fileeditor.Selection
-
Creates a new instance of Selection.
- selectToMatching(char, char) - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Selects to the next "end" character at the 0 level.
- setAllowLoadSave(boolean) - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Change the allowLoadSave state.
- setColumn(int) - Method in class se.biltmore.tools.fileeditor.Position
-
Sets the current column.
- setColumn(int, int) - Method in class se.biltmore.tools.fileeditor.Position
-
Sets the current column.
- setEnd(Position) - Method in class se.biltmore.tools.fileeditor.Selection
-
Sets the end position.
- setLine(int) - Method in class se.biltmore.tools.fileeditor.Position
-
Sets the line of the position.
- setLine(int, int) - Method in class se.biltmore.tools.fileeditor.Position
-
Sets the line of the position.
- setLine(int, String) - Method in interface se.biltmore.tools.fileeditor.TextBuffer
-
Replaces a specific line in the buffer.
- setLine(int, String) - Method in class se.biltmore.tools.fileeditor.TextFileBuffer
-
Replaces a specific line in the buffer.
- setLine(int, String) - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Replaces a line with a new text.
- setLine(String) - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Replaces the current line with a new text.
- setLineText(String) - Method in class se.biltmore.tools.fileeditor.Occurence
-
Updates the lines text.
- setPosition(Position) - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Sets the current position.
- setPosition(int, int) - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Sets the current position.
- setReadOnly(boolean) - Method in interface se.biltmore.tools.fileeditor.TextBuffer
-
If true makes the buffer read only.
- setReadOnly(boolean) - Method in class se.biltmore.tools.fileeditor.TextFileBuffer
-
If true makes the buffer read only.
- setStart(Position) - Method in class se.biltmore.tools.fileeditor.Selection
-
Sets the start position.
- setTextBuffer(TextBuffer) - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Replaces the buffer to edit.
- show() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Displays the loaded file.
- show(int, int) - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Displays the loaded file.
- startSelection() - Method in class se.biltmore.tools.fileeditor.TextFileEditor
-
Starts a new selection at the current position.