Skip navigation links
jterm by
jTEM
A B C D E G H I J K L M N P R S T U 

A

actionPerformed(ActionEvent) - Method in class de.jtem.jterm.JTermKit.CompleteCommandAction
 
actionPerformed(ActionEvent) - Method in class de.jtem.jterm.JTermKit.DefaultKeyTypedAction
The operation to perform when this action is triggered.
actionPerformed(ActionEvent) - Method in class de.jtem.jterm.JTermKit.EvaluateAction
 
actionPerformed(ActionEvent) - Method in class de.jtem.jterm.JTermKit.HistoryNextAction
 
actionPerformed(ActionEvent) - Method in class de.jtem.jterm.JTermKit.HistoryPreviousAction
 
actionPerformed(ActionEvent) - Method in class de.jtem.jterm.JTermKit.InsertNewLineAction
Insert a newline "\n".
actionPerformed(ActionEvent) - Method in class de.jtem.jterm.JTermKit.KillRestOfLineAction
 
actionPerformed(ActionEvent) - Method in class de.jtem.jterm.JTermKit.LeftAction
 
actionPerformed(ActionEvent) - Method in class de.jtem.jterm.JTermKit.LineDownAction
The operation to perform when this action is triggered.
actionPerformed(ActionEvent) - Method in class de.jtem.jterm.JTermKit.LineUpAction
The operation to perform when this action is triggered.
actionPerformed(ActionEvent) - Method in class de.jtem.jterm.JTermKit.NextWordAction
The operation to perform when this action is triggered.
actionPerformed(ActionEvent) - Method in class de.jtem.jterm.JTermKit.PreviousWordAction
The operation to perform when this action is triggered.
actionPerformed(ActionEvent) - Method in class de.jtem.jterm.JTermKit.SetToBeginOfLineAction
 
actionPerformed(ActionEvent) - Method in class de.jtem.jterm.JTermKit.SetToEndAction
 
actionPerformed(ActionEvent) - Method in class de.jtem.jterm.JTermKit.SetToLineEndAction
 
actionPerformed(ActionEvent) - Method in class de.jtem.jterm.JTermKit.SetToPromptAction
 

B

BshEvaluator - Class in de.jtem.jterm
Wrapper around a Beanshell Java interpreter.
BshEvaluator() - Constructor for class de.jtem.jterm.BshEvaluator
creates an Evaluator with its own interpreter.
BshEvaluator(Interpreter) - Constructor for class de.jtem.jterm.BshEvaluator
creates an Evaluator that talks to the global namespace of the Beanshell interpreter i.
BshEvaluator(Interpreter, NameSpace) - Constructor for class de.jtem.jterm.BshEvaluator
creates an Evaluator that talks to the namespace ns of the Beanshell interpreter i.
BshTerm - Class in de.jtem.jterm
Application that creates a new JTerm window with a running Beanshell interpreter.
BshTerm() - Constructor for class de.jtem.jterm.BshTerm
 

C

completeCommand(String) - Method in class de.jtem.jterm.BshEvaluator
 
completeCommand(String) - Method in class de.jtem.jterm.DefaultStringEvaluator
 
completeCommand(String) - Method in interface de.jtem.jterm.StringEvaluator
Given a partial script part, completeCommand returns an array of possible completions.
completeCommandAction - Static variable in class de.jtem.jterm.JTermKit
Name of the action to compelte command in the shell.
CompleteCommandAction() - Constructor for class de.jtem.jterm.JTermKit.CompleteCommandAction
 
createDefaultDocument() - Method in class de.jtem.jterm.JTermKit
 
createScrollingTerminal(Session) - Static method in class de.jtem.jterm.JTerm
 

D

de.jtem.jterm - package de.jtem.jterm
JTerm is a swing component that roughly has the look and feel of a Unix shell window: You can type text to some prompt and after hitting Return the text is evaluated.
defaultKeyTypedAction - Static variable in class de.jtem.jterm.JTermKit
Name of action when defaultkey typed.
DefaultKeyTypedAction() - Constructor for class de.jtem.jterm.JTermKit.DefaultKeyTypedAction
Creates this object with the appropriate identifier.
DefaultStringEvaluator - Class in de.jtem.jterm
Minimal implementation of the StringEvaluator interface for testing purposes.
DefaultStringEvaluator() - Constructor for class de.jtem.jterm.DefaultStringEvaluator
 
deleteRestOfLineAction - Static variable in class de.jtem.jterm.JTermKit
Name of actin to delete the rest of line after caret.
displayAndPrompt(String, AttributeSet) - Method in class de.jtem.jterm.Session
Display the result of some work done by the evaluator and provide a new prompt.

E

evaluate(String) - Method in class de.jtem.jterm.BshEvaluator
 
evaluate(String) - Method in class de.jtem.jterm.DefaultStringEvaluator
 
evaluate() - Method in class de.jtem.jterm.Session
Send the text portion between the prompt and the end of the document to the evaluator and append the result.
evaluate(String) - Method in interface de.jtem.jterm.StringEvaluator
The result of evaluating a string is another string together with a boolean telling whether it is a regular result or an error message.
evaluateAction - Static variable in class de.jtem.jterm.JTermKit
Name of the action to evaluate the given string.
EvaluateAction() - Constructor for class de.jtem.jterm.JTermKit.EvaluateAction
 

G

getActions() - Method in class de.jtem.jterm.JTermKit
 
getCommand() - Method in class de.jtem.jterm.Session
Returns the text portion between the prompt and the end of the document.
getContentType() - Method in class de.jtem.jterm.JTermKit
 
getEditorKit() - Method in class de.jtem.jterm.JTerm
 
getInterpreter() - Method in class de.jtem.jterm.BshEvaluator
 
getNameCompletion() - Method in class de.jtem.jterm.BshEvaluator
 
getSession() - Method in class de.jtem.jterm.JTerm
Returns this session by Reference.

H

historyNext() - Method in class de.jtem.jterm.Session
Go forward in the command history.
historyNextAction - Static variable in class de.jtem.jterm.JTermKit
Name of the action to return to next in history saved command.
HistoryNextAction() - Constructor for class de.jtem.jterm.JTermKit.HistoryNextAction
 
historyPrevAction - Static variable in class de.jtem.jterm.JTermKit
Name of the action to return to previous in history saved command.
historyPrevious() - Method in class de.jtem.jterm.Session
Go backwards in the command history.
HistoryPreviousAction() - Constructor for class de.jtem.jterm.JTermKit.HistoryPreviousAction
 

I

insertNewLineAction - Static variable in class de.jtem.jterm.JTermKit
Name of action to insert a new line character.
InsertNewLineAction() - Constructor for class de.jtem.jterm.JTermKit.InsertNewLineAction
 
insertString(int, String, AttributeSet) - Method in class de.jtem.jterm.Session
Inserts str at the specified offset using the input style, iff the offset corresponds to a position behaind the last promp.
InterpreterResult - Class in de.jtem.jterm
A string returned from an invocation of a StringEvaluator together with a boolean telling whether the string is an error message or a regular result
InterpreterResult(String, boolean) - Constructor for class de.jtem.jterm.InterpreterResult
 
InterpreterResult(String) - Constructor for class de.jtem.jterm.InterpreterResult
creates an IntrepreterResult with isErrorMessage = false
isErrorMessage - Variable in class de.jtem.jterm.InterpreterResult
Tells whether this is an error message or a regular result.

J

JTerm - Class in de.jtem.jterm
Swing component intended as a terminal window for communication with various Java interpreters.
JTerm(Session) - Constructor for class de.jtem.jterm.JTerm
 
JTermKit - Class in de.jtem.jterm
This is the set of actions needed by the JTerm.
JTermKit() - Constructor for class de.jtem.jterm.JTermKit
 
JTermKit.CompleteCommandAction - Class in de.jtem.jterm
Action attached to the Tab key.
JTermKit.DefaultKeyTypedAction - Class in de.jtem.jterm
The action that is executed by default if a key typed event is received and there is no keymap entry.
JTermKit.EvaluateAction - Class in de.jtem.jterm
Triggers evaluation of the current command.
JTermKit.HistoryNextAction - Class in de.jtem.jterm
Means going forward in the command history.
JTermKit.HistoryPreviousAction - Class in de.jtem.jterm
Means going backwards in the command history.
JTermKit.InsertNewLineAction - Class in de.jtem.jterm
 
JTermKit.KillRestOfLineAction - Class in de.jtem.jterm
Delete all characters after caretPostion.
JTermKit.LeftAction - Class in de.jtem.jterm
Action attached to the left-arrow key.
JTermKit.LineDownAction - Class in de.jtem.jterm
Action to move the caret to downon line if allowed.
JTermKit.LineUpAction - Class in de.jtem.jterm
Action to move the caret to upon line if allowed.
JTermKit.NextWordAction - Class in de.jtem.jterm
Action that set caret to the next word.
JTermKit.PreviousWordAction - Class in de.jtem.jterm
Action that set caret to the previous word.
JTermKit.SetToBeginOfLineAction - Class in de.jtem.jterm
Moves the caret to the begin of line.
JTermKit.SetToEndAction - Class in de.jtem.jterm
Moves the caret to the end of line.
JTermKit.SetToLineEndAction - Class in de.jtem.jterm
Moves the caret to the end of line.
JTermKit.SetToPromptAction - Class in de.jtem.jterm
Moves the caret to the prompt.

K

KillRestOfLineAction() - Constructor for class de.jtem.jterm.JTermKit.KillRestOfLineAction
 

L

LeftAction() - Constructor for class de.jtem.jterm.JTermKit.LeftAction
 
lineDownAction - Static variable in class de.jtem.jterm.JTermKit
Name of action to move the caret one line down.
lineUpAction - Static variable in class de.jtem.jterm.JTermKit
Name of action to move the caret one line upon.

M

main(String[]) - Static method in class de.jtem.jterm.BshTerm
 
main(String[]) - Static method in class de.jtem.jterm.Test
 
message - Variable in class de.jtem.jterm.InterpreterResult
The string holding the result of the evaluation or the error message
moveLeftAction - Static variable in class de.jtem.jterm.JTermKit
Name of action to move caret left till prompt .

N

nextWordAction - Static variable in class de.jtem.jterm.JTermKit
Name of action to move the caret to the begin of next word.

P

previousWordAction - Static variable in class de.jtem.jterm.JTermKit
Name of action to move the caret to the begin of previous word.

R

remove(int, int) - Method in class de.jtem.jterm.Session
Ignore requests to replace the selection
replaceCommand(String) - Method in class de.jtem.jterm.Session
Removes the text portion between the prompt and the end of the document and replaces it by str.

S

Session - Class in de.jtem.jterm
The type of StyledDocument used by JTerm to represent a session with some interpreter.
Session(String, StringEvaluator) - Constructor for class de.jtem.jterm.Session
Create a session for the evaluator e with prescribed prompt
Session(StringEvaluator) - Constructor for class de.jtem.jterm.Session
Create a session for the evaluator e with a default prompt.
setSession(Session) - Method in class de.jtem.jterm.JTerm
Sets this session by Reference.
setToBeginOfLineAction - Static variable in class de.jtem.jterm.JTermKit
Name of action to move caret to the begin of line.
SetToBeginOfLineAction() - Constructor for class de.jtem.jterm.JTermKit.SetToBeginOfLineAction
 
setToEndAction - Static variable in class de.jtem.jterm.JTermKit
Name of action to move caret to the very end.
SetToEndAction() - Constructor for class de.jtem.jterm.JTermKit.SetToEndAction
 
setToEndOfLineAction - Static variable in class de.jtem.jterm.JTermKit
Name of action to move caret to the end of line.
SetToLineEndAction() - Constructor for class de.jtem.jterm.JTermKit.SetToLineEndAction
 
setToPromptAction - Static variable in class de.jtem.jterm.JTermKit
Name of action to move caret to the prompt.
SetToPromptAction() - Constructor for class de.jtem.jterm.JTermKit.SetToPromptAction
 
StringEvaluator - Interface in de.jtem.jterm
This interface encapsules the capabilities of an interpreter (or a suitable wrapper around it) that one can talk to using a JTerm.

T

Test - Class in de.jtem.jterm
Application that creates a new JTerm window with a dummy interpreter.
Test() - Constructor for class de.jtem.jterm.Test
 

U

updateUI() - Method in class de.jtem.jterm.JTerm
 
A B C D E G H I J K L M N P R S T U 
Skip navigation links
jterm by
jTEM

jTEM