Serialized Form


Package bsh

Class bsh.BSHFormalComment extends bsh.SimpleNode implements Serializable

Serialized Fields

text

String text

Class bsh.BshMethod extends Object implements Serializable

Serialized Fields

declaringNameSpace

NameSpace declaringNameSpace

modifiers

Modifiers modifiers

name

String name

creturnType

Class creturnType

paramNames

String[] paramNames

numArgs

int numArgs

cparamTypes

Class[] cparamTypes

methodBody

BSHBlock methodBody

javaMethod

Method javaMethod

javaObject

Object javaObject

Class bsh.BSHPackageDeclaration extends bsh.SimpleNode implements Serializable

Class bsh.Capabilities.Unavailable extends UtilEvalError implements Serializable

Class bsh.ClassPathException extends UtilEvalError implements Serializable

Class bsh.DelayedEvalBshMethod extends BshMethod implements Serializable

Serialized Fields

returnTypeDescriptor

String returnTypeDescriptor

returnTypeNode

BSHReturnType returnTypeNode

paramTypeDescriptors

String[] paramTypeDescriptors

paramTypesNode

BSHFormalParameters paramTypesNode

Class bsh.EvalError extends Exception implements Serializable

Serialized Fields

node

SimpleNode node

message

String message

callstack

CallStack callstack

Class bsh.Interpreter extends Object implements Serializable

Serialization Methods

readObject

private void readObject(ObjectInputStream stream)
                 throws IOException,
                        ClassNotFoundException
De-serialization setup. Default out and err streams to stdout, stderr if they are null.

Serialized Fields

strictJava

boolean strictJava
Strict Java mode

See Also:
Interpreter.setStrictJava( boolean )

globalNameSpace

NameSpace globalNameSpace

console

ConsoleInterface console

parent

Interpreter parent
If this interpeter is a child of another, the parent


sourceFileInfo

String sourceFileInfo
The name of the file or other source that this interpreter is reading


exitOnEOF

boolean exitOnEOF
by default in interactive mode System.exit() on EOF


evalOnly

boolean evalOnly

interactive

boolean interactive

Class bsh.InterpreterError extends RuntimeException implements Serializable

Class bsh.Modifiers extends Object implements Serializable

Serialized Fields

modifiers

Hashtable modifiers

Class bsh.NameSpace extends Object implements Serializable

Serialization Methods

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException
Serialized Fields

nsName

String nsName
The name of this namespace. If the namespace is a method body namespace then this is the name of the method. If it's a class or class instance then it's the name of the class.


parent

NameSpace parent

variables

Hashtable variables

methods

Hashtable methods

importedClasses

Hashtable importedClasses

importedPackages

Vector importedPackages

importedCommands

Vector importedCommands

importedObjects

Vector importedObjects

importedStatic

Vector importedStatic

packageName

String packageName

thisReference

This thisReference

names

Hashtable names
Name resolver objects


callerInfoNode

SimpleNode callerInfoNode
The node associated with the creation of this namespace. This is used support getInvocationLine() and getInvocationText().


isMethod

boolean isMethod
Note that the namespace is a method body namespace. This is used for printing stack traces in exceptions.


isClass

boolean isClass
Note that the namespace is a class body or class instance namespace. This is used for controlling static/object import precedence, etc.


classStatic

Class classStatic

classInstance

Object classInstance

nameSourceListeners

Vector nameSourceListeners

Class bsh.ParseException extends EvalError implements Serializable

Serialized Fields

sourceFile

String sourceFile

specialConstructor

boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below).


currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

String eol
The end of line string for this machine.

Class bsh.Primitive extends Object implements Serializable

Serialized Fields

value

Object value
The primitive value stored in its java.lang wrapper class

Class bsh.TargetError extends EvalError implements Serializable

Serialized Fields

target

Throwable target

inNativeCode

boolean inNativeCode

Class bsh.This extends Object implements Serializable

Serialized Fields

namespace

NameSpace namespace
The namespace that this This reference wraps.

Class bsh.Token extends Object implements Serializable

Serialized Fields

kind

int kind
An integer that describes the kind of this token. This numbering system is determined by JavaCCParser, and a table of these numbers is stored in the file ...Constants.java.


beginLine

int beginLine
beginLine and beginColumn describe the position of the first character of this token; endLine and endColumn describe the position of the last character of this token.


beginColumn

int beginColumn
beginLine and beginColumn describe the position of the first character of this token; endLine and endColumn describe the position of the last character of this token.


endLine

int endLine
beginLine and beginColumn describe the position of the first character of this token; endLine and endColumn describe the position of the last character of this token.


endColumn

int endColumn
beginLine and beginColumn describe the position of the first character of this token; endLine and endColumn describe the position of the last character of this token.


image

String image
The string image of the token.


next

Token next
A reference to the next regular (non-special) token from the input stream. If this is the last token from the input stream, or if the token manager has not read tokens beyond this one, this field is set to null. This is true only if this token is also a regular token. Otherwise, see below for a description of the contents of this field.


specialToken

Token specialToken
This field is used to access special tokens that occur prior to this token, but after the immediately preceding regular (non-special) token. If there are no such special tokens, this field is set to null. When there are more than one such special token, this field refers to the last of these special tokens, which in turn refers to the next previous special token through its specialToken field, and so on until the first special token (whose specialToken field is null). The next fields of special tokens refer to other special tokens that immediately follow it (without an intervening regular token). If there is no such token, this field is null.

Class bsh.TokenMgrError extends Error implements Serializable

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.

Class bsh.UtilEvalError extends Exception implements Serializable

Class bsh.UtilTargetError extends UtilEvalError implements Serializable

Serialized Fields

t

Throwable t

Class bsh.Variable extends Object implements Serializable

Serialized Fields

name

String name
A null type means an untyped variable


type

Class type

typeDescriptor

String typeDescriptor

value

Object value

modifiers

Modifiers modifiers

lhs

LHS lhs


Package bsh.classpath

Class bsh.classpath.DiscreteFilesClassLoader.ClassSourceMap extends HashMap implements Serializable


Package bsh.util

Class bsh.util.AWTConsole extends TextArea implements Serializable

Serialized Fields

outPipe

OutputStream outPipe

inPipe

InputStream inPipe

in

InputStream in

out

PrintStream out

line

StringBuffer line

startedLine

String startedLine

textLength

int textLength

history

Vector history

histLine

int histLine

Class bsh.util.AWTDemoApplet extends Applet implements Serializable

Class bsh.util.AWTRemoteApplet extends Applet implements Serializable

Serialized Fields

out

OutputStream out

in

InputStream in

Class bsh.util.BshCanvas extends JComponent implements Serializable

Serialized Fields

ths

This ths

imageBuffer

Image imageBuffer

Class bsh.util.ClassBrowser extends JSplitPane implements Serializable

Serialized Fields

classPath

BshClassPath classPath

classManager

BshClassManager classManager

frame

JFrame frame

iframe

JInternalFrame iframe

classlist

JList classlist

conslist

JList conslist

mlist

JList mlist

fieldlist

JList fieldlist

ptree

ClassBrowser.PackageTree ptree

methodLine

JTextArea methodLine

tree

JTree tree

packagesList

String[] packagesList

classesList

String[] classesList

consList

Constructor[] consList

methodList

Method[] methodList

fieldList

Field[] fieldList

selectedPackage

String selectedPackage

selectedClass

Class selectedClass

Class bsh.util.JConsole extends JScrollPane implements Serializable

Serialized Fields

outPipe

OutputStream outPipe

inPipe

InputStream inPipe

in

InputStream in

out

PrintStream out

cmdStart

int cmdStart

history

Vector history

startedLine

String startedLine

histLine

int histLine

menu

JPopupMenu menu

text

JTextPane text

doc

DefaultStyledDocument doc

nameCompletion

NameCompletion nameCompletion

SHOW_AMBIG_MAX

int SHOW_AMBIG_MAX
See Also:
Constant Field Values

gotUp

boolean gotUp

ZEROS

String ZEROS

Class bsh.util.JDemoApplet extends JApplet implements Serializable

Class bsh.util.JRemoteApplet extends JApplet implements Serializable

Serialized Fields

out

OutputStream out

in

InputStream in

Class bsh.util.NameCompletionTable extends ArrayList implements Serializable

Serialized Fields

table

NameCompletionTable table
Unimplemented - need a collection here


sources

List sources



© 2000 pat@pat.net :-)