Package
Class
Use
Tree
Deprecated
Index
Help
PREV NEXT
FRAMES
NO FRAMES
All Classes
A
C
D
E
F
G
H
I
L
M
N
O
P
R
S
T
A
addLine(String)
- Method in interface se.biltmore.tools.fileeditor.
TextBuffer
Adds a line of text to the end of the buffer.
addLine(String)
- Method in class se.biltmore.tools.fileeditor.
TextFileBuffer
Adds a line of text to the end of the buffer.
adjustLimits(int, int)
- Method in class se.biltmore.tools.fileeditor.
Position
Adjusts the position to be withing limits.
appendBuffer(TextBuffer)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Appends another buffer into this one at the end.
appendToLine(int, String)
- Method in class se.biltmore.tools.fileeditor.
TextFileBuffer
Appends text to the specified line.
C
clear()
- Method in interface se.biltmore.tools.fileeditor.
TextBuffer
Clears the buffer.
clear()
- Method in class se.biltmore.tools.fileeditor.
TextFileBuffer
Clears the buffer.
clearSelection()
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Clears the selection.
clone()
- Method in class se.biltmore.tools.fileeditor.
Position
Returns a clone of this Position.
D
decrementColumnm()
- Method in class se.biltmore.tools.fileeditor.
Position
Decrements the column.
decrementLine()
- Method in class se.biltmore.tools.fileeditor.
Position
Decrements the line number.
deleteCurrentLine()
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Removes the current line.
deleteCurrentWord(char)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Deletes the current word as denoted by the specified delimeter.
deleteCurrentWord()
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Deletes the current word.
deleteSelection()
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Deletes the current selection and sets the current position to the position right after the deleted text.
E
END_OF_FILE_CHAR
- Static variable in class se.biltmore.tools.fileeditor.
TextFileEditor
Means end of file in the buffer held by the editor.
endSelection()
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Marks the end of the selection at the current position.
F
find(String)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Finds the specified text and moves the current position.
findAllBlankLines()
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Finds all blank lines and returns them as a list of Occurence objects.
findAllLinesMatching(String)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Returns a list of Occurence objects for each match.
findAllOccurences(String)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Returns a list of Occurence objects for each match.
findBlankLine()
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Finds the next blank line starting at the current line.
findLast(String)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Finds the last occurence of the specifeid text and moves the current position.
findLastOccurence(String)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Finds the last occurence of the specified text and returns it as an Occurence object.
findNext(String)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Finds the next occurence of the specified text and moves the current position.
findNextBlankLine()
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Finds the next blank line starting at the line after the current line.
G
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.
H
hasValidSelection()
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Returns true if there is a valid selection set.
I
incrementColumn()
- Method in class se.biltmore.tools.fileeditor.
Position
Increments the column.
incrementLine()
- Method in class se.biltmore.tools.fileeditor.
Position
Increments the line number.
insertBuffer(TextBuffer)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Inserts another buffer into the buffer at the line below the current line.
insertLine(int, String)
- Method in interface se.biltmore.tools.fileeditor.
TextBuffer
Inserts a new line at the specified position.
insertLine(int, String)
- Method in class se.biltmore.tools.fileeditor.
TextFileBuffer
Inserts a new line at the specified position.
insertLine(String)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Inserts a line after the current line.
insertLineAbove(String)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Inserts a line above the current line.
insertTextBuffer(TextBuffer)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Inserts a TextBuffer at the current position and moves the current position to after the last inserted character.
isOnFirstColumn()
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Returns true if the current position is on the first column in the line.
isOnFirstLine()
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Returns true if the current position is on the first line.
isOnLastColumn()
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Returns true if the current position is on the last column of the line.
isOnLastLine()
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Returns true if the current position is on the last line.
L
lineMatches(String)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Returns true if the current line matches the specified regular expression.
load(String)
- Method in interface se.biltmore.tools.fileeditor.
TextBuffer
Loads a text file into the buffer.
load(File)
- Method in class se.biltmore.tools.fileeditor.
TextFileBuffer
Loads a text file into the buffer.
load(String)
- Method in class se.biltmore.tools.fileeditor.
TextFileBuffer
Loads a text file into the buffer.
load(File)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Loads a file into the buffer.
load(String)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Loads a file into the buffer.
M
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.
N
newInstance()
- Method in interface se.biltmore.tools.fileeditor.
TextBuffer
Returns a new instance of the buffer.
newInstance()
- Method in class se.biltmore.tools.fileeditor.
TextFileBuffer
Returns a new instance of the buffer.
nextLineMatches(String)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Moves down to the next line and returns true if that line matches the specified regular expression.
O
Occurence
- Class in
se.biltmore.tools.fileeditor
This represents an occurence hit in the editor buffer.
Occurence(Position, TextBuffer)
- Constructor for class se.biltmore.tools.fileeditor.
Occurence
Creates a new instance of Occurence.
P
Position
- Class in
se.biltmore.tools.fileeditor
This represents a position in a text file by line number and column.
Position()
- Constructor for class se.biltmore.tools.fileeditor.
Position
Creates a new instance of Position.
Position(int, int)
- Constructor for class se.biltmore.tools.fileeditor.
Position
Creates a new instance of Position.
R
removeLine(int)
- Method in interface se.biltmore.tools.fileeditor.
TextBuffer
Removes the specified line.
removeLine(int)
- Method in class se.biltmore.tools.fileeditor.
TextFileBuffer
Removes the specified line.
replaceAllInCurrentLine(String, String)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Replaces all occurances of the specified text with the new text in the current line.
replaceAllInFile(String, String)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Replaces all occurances of the specified text with the new text in the whole buffer.
replaceCurrentLine(String)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Replaces the current line completely wiht the specified text.
replaceFirstInCurrentLine(String, String)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Replaces the first occurence of the specified text with the new text in the current line.
replaceSelectionWithText(String)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Replaces the current selection with the specified text.
replaceSelectionWithTextBuffer(TextBuffer)
- Method in class se.biltmore.tools.fileeditor.
TextFileEditor
Replaces the current selection with the contents of the specified TextBuffer.
S
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.
T
TextBuffer
- Interface in
se.biltmore.tools.fileeditor
TextFileBuffer
- Class in
se.biltmore.tools.fileeditor
TextFileBuffer()
- Constructor for class se.biltmore.tools.fileeditor.
TextFileBuffer
Creates a new instance of TextFileBuffer.
TextFileEditor
- Class in
se.biltmore.tools.fileeditor
This is a text file editor that as the name suggests, edits text files.
TextFileEditor()
- Constructor for class se.biltmore.tools.fileeditor.
TextFileEditor
Creates a new instance of TextFileEditor.
toString()
- Method in class se.biltmore.tools.fileeditor.
Occurence
toString()
- Method in class se.biltmore.tools.fileeditor.
Position
Returns a String representation of the position.
toString()
- Method in class se.biltmore.tools.fileeditor.
Selection
toString()
- Method in class se.biltmore.tools.fileeditor.
TextFileBuffer
Returns the buffer as a String.
A
C
D
E
F
G
H
I
L
M
N
O
P
R
S
T
Package
Class
Use
Tree
Deprecated
Index
Help
PREV NEXT
FRAMES
NO FRAMES
All Classes
Copyright © 2009-2010
Biltmore Group AB
. All Rights Reserved.