Serialized Form


Package bsh

Class bsh.BSHFormalComment extends bsh.SimpleNode implements Serializable

Serialized Fields

text

java.lang.String text

Class bsh.BshMethod extends java.lang.Object implements Serializable

Serialized Fields

declaringNameSpace

NameSpace declaringNameSpace

modifiers

Modifiers modifiers

name

java.lang.String name

creturnType

java.lang.Class creturnType

paramNames

java.lang.String[] paramNames

numArgs

int numArgs

cparamTypes

java.lang.Class[] cparamTypes

methodBody

bsh.BSHBlock methodBody

javaMethod

java.lang.reflect.Method javaMethod

javaObject

java.lang.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

java.lang.String returnTypeDescriptor

returnTypeNode

bsh.BSHReturnType returnTypeNode

paramTypeDescriptors

java.lang.String[] paramTypeDescriptors

paramTypesNode

bsh.BSHFormalParameters paramTypesNode

Class bsh.EvalError extends java.lang.Exception implements Serializable

Serialized Fields

node

bsh.SimpleNode node

message

java.lang.String message

callstack

CallStack callstack

Class bsh.Interpreter extends java.lang.Object implements Serializable

Serialization Methods

readObject

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

Throws:
java.io.IOException
java.lang.ClassNotFoundException
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

java.lang.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 java.lang.RuntimeException implements Serializable

Class bsh.Modifiers extends java.lang.Object implements Serializable

Serialized Fields

modifiers

java.util.Hashtable modifiers

Class bsh.NameSpace extends java.lang.Object implements Serializable

Serialization Methods

writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws java.io.IOException
Throws:
java.io.IOException
Serialized Fields

nsName

java.lang.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

java.util.Hashtable variables

methods

java.util.Hashtable methods

importedClasses

java.util.Hashtable importedClasses

importedPackages

java.util.Vector importedPackages

importedObjects

java.util.Vector importedObjects

importedStatic

java.util.Vector importedStatic

importedCommands

java.util.Vector importedCommands

packageName

java.lang.String packageName

thisReference

This thisReference

names

java.util.Hashtable names
Name resolver objects


callerInfoNode

bsh.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

java.lang.Class classStatic

classInstance

java.lang.Object classInstance

nameSourceListeners

java.util.Vector nameSourceListeners

Class bsh.ParseException extends EvalError implements Serializable

Serialized Fields

sourceFile

java.lang.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

java.lang.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

java.lang.String eol
The end of line string for this machine.

Class bsh.Primitive extends java.lang.Object implements Serializable

Serialized Fields

value

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

Class bsh.TargetError extends EvalError implements Serializable

Serialized Fields

target

java.lang.Throwable target

inNativeCode

boolean inNativeCode

Class bsh.This extends java.lang.Object implements Serializable

Serialized Fields

namespace

NameSpace namespace
The namespace that this This reference wraps.

Class bsh.Token extends java.lang.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

java.lang.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 java.lang.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 java.lang.Exception implements Serializable

Class bsh.UtilTargetError extends UtilEvalError implements Serializable

Serialized Fields

t

java.lang.Throwable t

Class bsh.Variable extends java.lang.Object implements Serializable

Serialized Fields

name

java.lang.String name
A null type means an untyped variable


type

java.lang.Class type

typeDescriptor

java.lang.String typeDescriptor

value

java.lang.Object value

modifiers

Modifiers modifiers

lhs

bsh.LHS lhs

Package com.microstar.xml

Class com.microstar.xml.XmlException extends java.lang.Exception implements Serializable

Serialized Fields

message

java.lang.String message

systemId

java.lang.String systemId

line

int line

column

int column

Package gnu.regexp

Class gnu.regexp.RE extends gnu.regexp.REToken implements Serializable

Serialized Fields

firstToken

gnu.regexp.REToken firstToken

lastToken

gnu.regexp.REToken lastToken

numSubs

int numSubs

minimumLength

int minimumLength
Minimum length, in characters, of any possible match.

Class gnu.regexp.REException extends java.lang.Exception implements Serializable

Serialized Fields

type

int type

pos

int pos

Class gnu.regexp.REMatch extends java.lang.Object implements Serializable

Serialized Fields

matchedText

java.lang.String matchedText

eflags

int eflags

offset

int offset

anchor

int anchor

index

int index

start

int[] start

end

int[] end

next

REMatch next

Class gnu.regexp.REMatchEnumeration extends java.lang.Object implements Serializable

Serialized Fields

more

int more

match

REMatch match

expr

RE expr

input

CharIndexed input

eflags

int eflags

index

int index

Class gnu.regexp.RESyntax extends java.lang.Object implements Serializable

Serialized Fields

bits

java.util.BitSet bits

isFinal

boolean isFinal

lineSeparator

java.lang.String lineSeparator

Class gnu.regexp.UncheckedRE extends RE implements Serializable


Package org.gjt.sp.jedit

Class org.gjt.sp.jedit.AbstractOptionPane extends javax.swing.JPanel implements Serializable

Serialized Fields

initialized

boolean initialized
Has the option pane been initialized?


gridBag

java.awt.GridBagLayout gridBag
The layout manager.


y

int y
The number of components already added to the layout manager.


name

java.lang.String name

Class org.gjt.sp.jedit.EditPane extends javax.swing.JPanel implements Serializable

Serialized Fields

init

boolean init

view

View view

buffer

Buffer buffer

recentBuffer

Buffer recentBuffer

bufferSwitcher

BufferSwitcher bufferSwitcher

textArea

JEditTextArea textArea

markerHighlight

org.gjt.sp.jedit.EditPane.MarkerHighlight markerHighlight

Class org.gjt.sp.jedit.View extends javax.swing.JFrame implements Serializable

Serialized Fields

prev

View prev

next

View next

closed

boolean closed

dockableWindowManager

DockableWindowManager dockableWindowManager

topToolBars

javax.swing.JPanel topToolBars

bottomToolBars

javax.swing.JPanel bottomToolBars

toolBarManager

ToolBarManager toolBarManager

toolBar

javax.swing.Box toolBar

searchBar

SearchBar searchBar

actionBar

ActionBar actionBar

editPane

EditPane editPane

splitPane

javax.swing.JSplitPane splitPane

lastSplitConfig

java.lang.String lastSplitConfig

status

StatusBar status

keyEventInterceptor

java.awt.event.KeyListener keyEventInterceptor

inputHandler

InputHandler inputHandler

recorder

Macros.Recorder recorder

prefixFocusOwner

java.awt.Component prefixFocusOwner

waitCount

int waitCount

showFullPath

boolean showFullPath

plainView

boolean plainView

waitSocket

java.net.Socket waitSocket

Package org.gjt.sp.jedit.browser

Class org.gjt.sp.jedit.browser.BrowserCommandsMenu extends javax.swing.JPopupMenu implements Serializable

Serialized Fields

browser

VFSBrowser browser

encodingMenuItems

java.util.HashMap encodingMenuItems

autoDetect

javax.swing.JCheckBoxMenuItem autoDetect

otherEncoding

javax.swing.JRadioButtonMenuItem otherEncoding

Class org.gjt.sp.jedit.browser.FileCellRenderer extends javax.swing.table.DefaultTableCellRenderer implements Serializable

Serialized Fields

plainFont

java.awt.Font plainFont

boldFont

java.awt.Font boldFont

showIcons

boolean showIcons

openBuffer

boolean openBuffer

isSelected

boolean isSelected

file

VFSFile file

Class org.gjt.sp.jedit.browser.VFSBrowser extends javax.swing.JPanel implements Serializable

Serialized Fields

currentEncoding

java.lang.String currentEncoding

autoDetectEncoding

boolean autoDetectEncoding

listenerList

javax.swing.event.EventListenerList listenerList

view

View view

horizontalLayout

boolean horizontalLayout

path

java.lang.String path

pathField

HistoryTextField pathField

filterCheckbox

javax.swing.JCheckBox filterCheckbox

filterField

HistoryTextField filterField

toolbarBox

javax.swing.Box toolbarBox

favorites

org.gjt.sp.jedit.browser.VFSBrowser.FavoritesMenuButton favorites

plugins

org.gjt.sp.jedit.browser.VFSBrowser.PluginsMenuButton plugins

browserView

org.gjt.sp.jedit.browser.BrowserView browserView

filenameFilter

java.util.regex.Pattern filenameFilter

mode

int mode

multipleSelection

boolean multipleSelection

showHiddenFiles

boolean showHiddenFiles

sortMixFilesAndDirs

boolean sortMixFilesAndDirs

sortIgnoreCase

boolean sortIgnoreCase

doubleClickClose

boolean doubleClickClose

requestRunning

boolean requestRunning

maybeReloadRequestRunning

boolean maybeReloadRequestRunning

Class org.gjt.sp.jedit.browser.VFSDirectoryEntryTable extends javax.swing.JTable implements Serializable

Serialized Fields

browserView

org.gjt.sp.jedit.browser.BrowserView browserView

renderer

FileCellRenderer renderer

typeSelectBuffer

java.lang.StringBuffer typeSelectBuffer

timer

javax.swing.Timer timer

resizingColumns

boolean resizingColumns

Class org.gjt.sp.jedit.browser.VFSDirectoryEntryTableModel extends javax.swing.table.AbstractTableModel implements Serializable

Serialized Fields

files

org.gjt.sp.jedit.browser.VFSDirectoryEntryTableModel.Entry[] files

extAttrs

java.util.List extAttrs

Class org.gjt.sp.jedit.browser.VFSFileChooserDialog extends EnhancedDialog implements Serializable

Serialized Fields

browser

VFSBrowser browser

filenameField

org.gjt.sp.jedit.browser.VFSFileNameField filenameField

filename

java.lang.String filename

ok

javax.swing.JButton ok

cancel

javax.swing.JButton cancel

isOK

boolean isOK

workThreadHandler

org.gjt.sp.jedit.browser.VFSFileChooserDialog.WorkThreadHandler workThreadHandler

Package org.gjt.sp.jedit.gui

Class org.gjt.sp.jedit.gui.AbbrevEditor extends javax.swing.JPanel implements Serializable

Serialized Fields

abbrev

javax.swing.JTextField abbrev

beforeCaret

javax.swing.JTextArea beforeCaret

afterCaret

javax.swing.JTextArea afterCaret

Class org.gjt.sp.jedit.gui.AboutDialog extends EnhancedDialog implements Serializable

Serialized Fields

close

javax.swing.JButton close

Class org.gjt.sp.jedit.gui.ActionBar extends javax.swing.JPanel implements Serializable

Serialized Fields

view

View view

temp

boolean temp

repeatCount

int repeatCount

action

HistoryTextField action

popup

org.gjt.sp.jedit.gui.ActionBar.CompletionPopup popup

close

RolloverButton close

Class org.gjt.sp.jedit.gui.AddAbbrevDialog extends javax.swing.JDialog implements Serializable

Serialized Fields

view

View view

editor

AbbrevEditor editor

global

javax.swing.JButton global

modeSpecific

javax.swing.JButton modeSpecific

cancel

javax.swing.JButton cancel

Class org.gjt.sp.jedit.gui.AnimatedIcon extends javax.swing.ImageIcon implements Serializable

Serialized Fields

frames

java.awt.Image[] frames

current

int current

delay

int delay

timer

javax.swing.Timer timer

host

java.awt.Component host

icon

java.awt.Image icon

Class org.gjt.sp.jedit.gui.BeanShellErrorDialog extends TextAreaDialog implements Serializable

Class org.gjt.sp.jedit.gui.BufferOptions extends EnhancedDialog implements Serializable

Serialized Fields

view

View view

buffer

Buffer buffer

modes

Mode[] modes

mode

javax.swing.JComboBox mode

lineSeparator

javax.swing.JComboBox lineSeparator

encoding

javax.swing.JComboBox encoding

gzipped

javax.swing.JCheckBox gzipped

folding

javax.swing.JComboBox folding

wrap

javax.swing.JComboBox wrap

maxLineLen

javax.swing.JComboBox maxLineLen

tabSize

javax.swing.JComboBox tabSize

indentSize

javax.swing.JComboBox indentSize

noTabs

javax.swing.JCheckBox noTabs

ok

javax.swing.JButton ok

cancel

javax.swing.JButton cancel

Class org.gjt.sp.jedit.gui.BufferSwitcher extends javax.swing.JComboBox implements Serializable

Serialized Fields

editPane

EditPane editPane

updating

boolean updating

Class org.gjt.sp.jedit.gui.CloseDialog extends EnhancedDialog implements Serializable

Serialized Fields

view

View view

bufferList

javax.swing.JList bufferList

bufferModel

javax.swing.DefaultListModel bufferModel

selectAll

javax.swing.JButton selectAll

save

javax.swing.JButton save

discard

javax.swing.JButton discard

cancel

javax.swing.JButton cancel

ok

boolean ok

selectAllFlag

boolean selectAllFlag

Class org.gjt.sp.jedit.gui.ColorWellButton extends javax.swing.JButton implements Serializable

Class org.gjt.sp.jedit.gui.CompleteWord extends javax.swing.JWindow implements Serializable

Serialized Fields

view

View view

textArea

JEditTextArea textArea

buffer

Buffer buffer

word

java.lang.String word

words

javax.swing.JList words

noWordSep

java.lang.String noWordSep

Class org.gjt.sp.jedit.gui.DockableWindowManager extends javax.swing.JPanel implements Serializable

Serialized Fields

resizePos

int resizePos

resizeRect

java.awt.Rectangle resizeRect

view

View view

factory

DockableWindowFactory factory

windows

java.util.Hashtable windows

left

PanelWindowContainer left

right

PanelWindowContainer right

top

PanelWindowContainer top

bottom

PanelWindowContainer bottom

clones

java.util.ArrayList clones

Class org.gjt.sp.jedit.gui.EditAbbrevDialog extends javax.swing.JDialog implements Serializable

Serialized Fields

editor

AbbrevEditor editor

ok

javax.swing.JButton ok

cancel

javax.swing.JButton cancel

isOK

boolean isOK

originalAbbrev

java.lang.String originalAbbrev

abbrevs

java.util.Map abbrevs

Class org.gjt.sp.jedit.gui.EnhancedButton extends RolloverButton implements Serializable

Serialized Fields

action

java.lang.String action

Class org.gjt.sp.jedit.gui.EnhancedDialog extends javax.swing.JDialog implements Serializable

Serialized Fields

keyHandler

org.gjt.sp.jedit.gui.EnhancedDialog.KeyHandler keyHandler

enterEnabled

boolean enterEnabled

Class org.gjt.sp.jedit.gui.ErrorListDialog extends EnhancedDialog implements Serializable

Serialized Fields

ok

javax.swing.JButton ok

pluginMgr

javax.swing.JButton pluginMgr

Class org.gjt.sp.jedit.gui.FilesChangedDialog extends EnhancedDialog implements Serializable

Serialized Fields

view

View view

bufferTree

javax.swing.JTree bufferTree

bufferTreeModel

javax.swing.tree.DefaultTreeModel bufferTreeModel

root

javax.swing.tree.DefaultMutableTreeNode root

selectAll

javax.swing.JButton selectAll

selectAllInProgress

boolean selectAllInProgress

reload

javax.swing.JButton reload

close

javax.swing.JButton close

Class org.gjt.sp.jedit.gui.FloatingWindowContainer extends javax.swing.JFrame implements Serializable

Serialized Fields

dockableName

java.lang.String dockableName

dockableWindowManager

DockableWindowManager dockableWindowManager

clone

boolean clone

entry

org.gjt.sp.jedit.gui.DockableWindowManager.Entry entry

menu

javax.swing.JButton menu

Class org.gjt.sp.jedit.gui.FontSelector extends javax.swing.JButton implements Serializable

Serialized Fields

antiAlias

boolean antiAlias

Class org.gjt.sp.jedit.gui.GrabKeyDialog extends javax.swing.JDialog implements Serializable

Serialized Fields

shortcut

org.gjt.sp.jedit.gui.GrabKeyDialog.InputPane shortcut

assignedTo

javax.swing.JLabel assignedTo

ok

javax.swing.JButton ok

remove

javax.swing.JButton remove

cancel

javax.swing.JButton cancel

clear

javax.swing.JButton clear

isOK

boolean isOK

binding

GrabKeyDialog.KeyBinding binding

allBindings

java.util.Vector allBindings

debugBuffer

Buffer debugBuffer

Class org.gjt.sp.jedit.gui.HistoryModel extends javax.swing.DefaultListModel implements Serializable

Serialized Fields

name

java.lang.String name

Class org.gjt.sp.jedit.gui.HistoryTextArea extends javax.swing.JTextArea implements Serializable

Serialized Fields

controller

HistoryText controller

Class org.gjt.sp.jedit.gui.HistoryTextField extends javax.swing.JTextField implements Serializable

Serialized Fields

controller

HistoryText controller

enterAddsToHistory

boolean enterAddsToHistory

selectAllOnFocus

boolean selectAllOnFocus

Class org.gjt.sp.jedit.gui.IOProgressMonitor extends javax.swing.JPanel implements Serializable

Serialized Fields

caption

javax.swing.JLabel caption

threads

org.gjt.sp.jedit.gui.IOProgressMonitor.ThreadProgress[] threads

workThreadHandler

org.gjt.sp.jedit.gui.IOProgressMonitor.WorkThreadHandler workThreadHandler

Class org.gjt.sp.jedit.gui.JCheckBoxList extends javax.swing.JTable implements Serializable

Serialized Fields

dummy

javax.swing.table.TableCellRenderer dummy

Class org.gjt.sp.jedit.gui.LogViewer extends javax.swing.JPanel implements Serializable

Serialized Fields

list

javax.swing.JList list

copy

javax.swing.JButton copy

tail

javax.swing.JCheckBox tail

tailIsOn

boolean tailIsOn

Class org.gjt.sp.jedit.gui.MarkerViewer extends javax.swing.JPanel implements Serializable

Serialized Fields

markerList

javax.swing.JList markerList

view

View view

previous

RolloverButton previous

next

RolloverButton next

clear

RolloverButton clear

Class org.gjt.sp.jedit.gui.OptionsDialog extends EnhancedDialog implements Serializable

Serialized Fields

name

java.lang.String name

splitter

javax.swing.JSplitPane splitter

paneTree

javax.swing.JTree paneTree

stage

javax.swing.JPanel stage

ok

javax.swing.JButton ok

cancel

javax.swing.JButton cancel

apply

javax.swing.JButton apply

currentPane

OptionPane currentPane

deferredOptionPanes

java.util.Map deferredOptionPanes

Class org.gjt.sp.jedit.gui.OptionsDialog.PaneNameRenderer extends javax.swing.tree.DefaultTreeCellRenderer implements Serializable

Serialized Fields

paneFont

java.awt.Font paneFont

groupFont

java.awt.Font groupFont

Class org.gjt.sp.jedit.gui.PasteFromListDialog extends EnhancedDialog implements Serializable

Serialized Fields

view

View view

listModel

MutableListModel listModel

clips

javax.swing.JList clips

clipText

javax.swing.JTextArea clipText

insert

javax.swing.JButton insert

cancel

javax.swing.JButton cancel

Class org.gjt.sp.jedit.gui.RegisterViewer extends javax.swing.JPanel implements Serializable

Serialized Fields

registerList

javax.swing.JList registerList

contentTextArea

javax.swing.JTextArea contentTextArea

documentHandler

org.gjt.sp.jedit.gui.RegisterViewer.DocumentHandler documentHandler

view

View view

editing

boolean editing

Class org.gjt.sp.jedit.gui.RolloverButton extends javax.swing.JButton implements Serializable

Serialized Fields

revalidateBlocked

boolean revalidateBlocked

Class org.gjt.sp.jedit.gui.SelectLineRange extends EnhancedDialog implements Serializable

Serialized Fields

view

View view

startField

javax.swing.JTextField startField

endField

javax.swing.JTextField endField

ok

javax.swing.JButton ok

cancel

javax.swing.JButton cancel

Class org.gjt.sp.jedit.gui.ShortcutPrefixActiveEvent extends javax.swing.event.ChangeEvent implements Serializable

Serialized Fields

bindings

java.util.Hashtable bindings
Description of the Field


active

boolean active
Description of the Field

Class org.gjt.sp.jedit.gui.SplashScreen extends javax.swing.JComponent implements Serializable

Serialized Fields

fm

java.awt.FontMetrics fm

win

javax.swing.JWindow win

image

java.awt.Image image

progress

int progress

Class org.gjt.sp.jedit.gui.StatusBar extends javax.swing.JPanel implements Serializable

Serialized Fields

view

View view

panel

javax.swing.JPanel panel

box

javax.swing.Box box

caretStatus

org.gjt.sp.jedit.gui.StatusBar.ToolTipLabel caretStatus

messageComp

java.awt.Component messageComp

message

javax.swing.JLabel message

mode

javax.swing.JLabel mode

wrap

javax.swing.JLabel wrap

multiSelect

javax.swing.JLabel multiSelect

rectSelect

javax.swing.JLabel rectSelect

overwrite

javax.swing.JLabel overwrite

lineSep

javax.swing.JLabel lineSep

buf

java.lang.StringBuffer buf

tempTimer

javax.swing.Timer tempTimer

currentMessageIsIO

boolean currentMessageIsIO

seg

javax.swing.text.Segment seg

showCaretStatus

boolean showCaretStatus

showEditMode

boolean showEditMode

showFoldMode

boolean showFoldMode

showEncoding

boolean showEncoding

showWrap

boolean showWrap

showMultiSelect

boolean showMultiSelect

showRectSelect

boolean showRectSelect

showOverwrite

boolean showOverwrite

showLineSeperator

boolean showLineSeperator

Class org.gjt.sp.jedit.gui.TextAreaDialog extends EnhancedDialog implements Serializable

Class org.gjt.sp.jedit.gui.TipOfTheDay extends EnhancedDialog implements Serializable

Serialized Fields

showNextTime

javax.swing.JCheckBox showNextTime

nextTip

javax.swing.JButton nextTip

close

javax.swing.JButton close

tipText

javax.swing.JEditorPane tipText

currentTip

int currentTip

Class org.gjt.sp.jedit.gui.VariableGridLayout extends java.lang.Object implements Serializable

Serialized Fields

mode

int mode

size

int size

hgap

int hgap

vgap

int vgap

Package org.gjt.sp.jedit.help

Class org.gjt.sp.jedit.help.HelpSearchPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

helpViewer

HelpViewerInterface helpViewer

searchField

HistoryTextField searchField

results

javax.swing.JList results

index

org.gjt.sp.jedit.help.HelpIndex index

Class org.gjt.sp.jedit.help.HelpTOCPanel extends javax.swing.JPanel implements Serializable

Serialized Fields

helpViewer

HelpViewerInterface helpViewer

tocModel

javax.swing.tree.DefaultTreeModel tocModel

tocRoot

javax.swing.tree.DefaultMutableTreeNode tocRoot

toc

javax.swing.JTree toc

nodes

java.util.Hashtable nodes

Class org.gjt.sp.jedit.help.HelpViewer extends javax.swing.JFrame implements Serializable

Serialized Fields

baseURL

java.lang.String baseURL

shortURL

java.lang.String shortURL

back

HistoryButton back

forward

HistoryButton forward

viewer

javax.swing.JEditorPane viewer

title

javax.swing.JLabel title

splitter

javax.swing.JSplitPane splitter

historyModel

HelpHistoryModel historyModel

toc

HelpTOCPanel toc

queuedTOCReload

boolean queuedTOCReload

Class org.gjt.sp.jedit.help.HistoryButton extends javax.swing.JPanel implements Serializable

Serialized Fields

type

int type

history

HelpHistoryModel history

arrow_button

RolloverButton arrow_button

drop_button

RolloverButton drop_button

historyList

javax.swing.JPopupMenu historyList

arrowActionListener

java.awt.event.ActionListener arrowActionListener

Package org.gjt.sp.jedit.io

Class org.gjt.sp.jedit.io.FileVFS.LocalFile extends VFSFile implements Serializable

Serialized Fields

file

java.io.File file

modified

long modified
Deprecated. Call getModified() instead.

Class org.gjt.sp.jedit.io.VFS.DirectoryEntry extends VFSFile implements Serializable

Class org.gjt.sp.jedit.io.VFSFile extends java.lang.Object implements Serializable

Serialized Fields

name

java.lang.String name
Deprecated. Use the accessor/mutator methods instead.

path

java.lang.String path
Deprecated. Use the accessor/mutator methods instead.

symlinkPath

java.lang.String symlinkPath
Deprecated. Use the accessor/mutator methods instead.

deletePath

java.lang.String deletePath
Deprecated. Use the accessor/mutator methods instead.

type

int type
Deprecated. Use the accessor/mutator methods instead.

length

long length
Deprecated. Use the accessor/mutator methods instead.

hidden

boolean hidden
Deprecated. Use the accessor/mutator methods instead.

canRead

boolean canRead
Deprecated. Use the accessor/mutator methods instead.

canWrite

boolean canWrite
Deprecated. Use the accessor/mutator methods instead.

colorCalculated

boolean colorCalculated

color

java.awt.Color color

fetchedAttrs

boolean fetchedAttrs

Package org.gjt.sp.jedit.menu

Class org.gjt.sp.jedit.menu.EnhancedCheckBoxMenuItem extends javax.swing.JCheckBoxMenuItem implements Serializable

Serialized Fields

context

ActionContext context

shortcut

java.lang.String shortcut

action

java.lang.String action

Class org.gjt.sp.jedit.menu.EnhancedMenu extends javax.swing.JMenu implements Serializable

Serialized Fields

initialComponentCount

int initialComponentCount

context

ActionContext context

providerCode

java.lang.String providerCode

provider

DynamicMenuProvider provider

ebStub

org.gjt.sp.jedit.menu.EnhancedMenu.EditBusStub ebStub

Class org.gjt.sp.jedit.menu.EnhancedMenuItem extends javax.swing.JMenuItem implements Serializable

Serialized Fields

shortcut

java.lang.String shortcut

action

java.lang.String action

Package org.gjt.sp.jedit.options

Class org.gjt.sp.jedit.options.AbbrevsOptionPane extends AbstractOptionPane implements Serializable

Serialized Fields

setsComboBox

javax.swing.JComboBox setsComboBox

expandOnInput

javax.swing.JCheckBox expandOnInput

abbrevsTable

javax.swing.JTable abbrevsTable

globalAbbrevs

org.gjt.sp.jedit.options.AbbrevsModel globalAbbrevs

modeAbbrevs

java.util.Hashtable modeAbbrevs

add

javax.swing.JButton add

edit

javax.swing.JButton edit

remove

javax.swing.JButton remove

Class org.gjt.sp.jedit.options.AppearanceOptionPane extends AbstractOptionPane implements Serializable

Serialized Fields

lfs

javax.swing.UIManager.LookAndFeelInfo[] lfs

lookAndFeel

javax.swing.JComboBox lookAndFeel

primaryFont

FontSelector primaryFont

secondaryFont

FontSelector secondaryFont

history

javax.swing.JTextField history

menuSpillover

javax.swing.JTextField menuSpillover

showTips

javax.swing.JCheckBox showTips

showSplash

javax.swing.JCheckBox showSplash

textColors

javax.swing.JCheckBox textColors

decorateFrames

javax.swing.JCheckBox decorateFrames

decorateDialogs

javax.swing.JCheckBox decorateDialogs

antiAliasExtras

javax.swing.JComboBox antiAliasExtras

Class org.gjt.sp.jedit.options.BrowserColorsOptionPane extends AbstractOptionPane implements Serializable

Serialized Fields

colorsModel

org.gjt.sp.jedit.options.BrowserColorsModel colorsModel

colorsTable

javax.swing.JTable colorsTable

add

javax.swing.JButton add

remove

javax.swing.JButton remove

moveUp

javax.swing.JButton moveUp

moveDown

javax.swing.JButton moveDown

Class org.gjt.sp.jedit.options.BrowserOptionPane extends AbstractOptionPane implements Serializable

Serialized Fields

defaultDirectory

javax.swing.JComboBox defaultDirectory

showToolbar

javax.swing.JCheckBox showToolbar

showMenubar

javax.swing.JCheckBox showMenubar

showIcons

javax.swing.JCheckBox showIcons

showHiddenFiles

javax.swing.JCheckBox showHiddenFiles

sortIgnoreCase

javax.swing.JCheckBox sortIgnoreCase

sortMixFilesAndDirs

javax.swing.JCheckBox sortMixFilesAndDirs

doubleClickClose

javax.swing.JCheckBox doubleClickClose

currentBufferFilter

javax.swing.JCheckBox currentBufferFilter

Class org.gjt.sp.jedit.options.ContextOptionPane extends AbstractOptionPane implements Serializable

Serialized Fields

listModel

javax.swing.DefaultListModel listModel

list

javax.swing.JList list

add

javax.swing.JButton add

remove

javax.swing.JButton remove

moveUp

javax.swing.JButton moveUp

moveDown

javax.swing.JButton moveDown

Class org.gjt.sp.jedit.options.DockingOptionPane extends AbstractOptionPane implements Serializable

Serialized Fields

windowTable

javax.swing.JTable windowTable

windowModel

org.gjt.sp.jedit.options.WindowTableModel windowModel

Class org.gjt.sp.jedit.options.EditingOptionPane extends AbstractOptionPane implements Serializable

Serialized Fields

defaultMode

javax.swing.JComboBox defaultMode

undoCount

javax.swing.JTextField undoCount

global

org.gjt.sp.jedit.options.EditingOptionPane.ModeProperties global

modeProps

org.gjt.sp.jedit.options.EditingOptionPane.ModeProperties[] modeProps

current

org.gjt.sp.jedit.options.EditingOptionPane.ModeProperties current

captionBox

javax.swing.Box captionBox

mode

javax.swing.JComboBox mode

useDefaults

javax.swing.JCheckBox useDefaults

filenameGlob

javax.swing.JTextField filenameGlob

firstlineGlob

javax.swing.JTextField firstlineGlob

noWordSep

javax.swing.JTextField noWordSep

folding

javax.swing.JComboBox folding

collapseFolds

javax.swing.JTextField collapseFolds

wrap

javax.swing.JComboBox wrap

maxLineLen

javax.swing.JComboBox maxLineLen

tabSize

javax.swing.JComboBox tabSize

indentSize

javax.swing.JComboBox indentSize

noTabs

javax.swing.JCheckBox noTabs

deepIndent

javax.swing.JCheckBox deepIndent

Class org.gjt.sp.jedit.options.FirewallOptionPane extends AbstractOptionPane implements Serializable

Serialized Fields

httpEnabled

javax.swing.JCheckBox httpEnabled

httpHost

javax.swing.JTextField httpHost

httpPort

javax.swing.JTextField httpPort

httpUser

javax.swing.JTextField httpUser

httpPass

javax.swing.JPasswordField httpPass

httpNonProxy

javax.swing.JTextField httpNonProxy

socksEnabled

javax.swing.JCheckBox socksEnabled

socksHost

javax.swing.JTextField socksHost

socksPort

javax.swing.JTextField socksPort

Class org.gjt.sp.jedit.options.GeneralOptionPane extends AbstractOptionPane implements Serializable

Serialized Fields

lineSeparator

javax.swing.JComboBox lineSeparator

encoding

javax.swing.JComboBox encoding

encodingAutodetect

javax.swing.JCheckBox encodingAutodetect

checkModStatus

javax.swing.JComboBox checkModStatus

recentFiles

javax.swing.JTextField recentFiles

saveCaret

javax.swing.JCheckBox saveCaret

sortRecent

javax.swing.JCheckBox sortRecent

persistentMarkers

javax.swing.JCheckBox persistentMarkers

restore

javax.swing.JCheckBox restore

restoreCLI

javax.swing.JCheckBox restoreCLI

sortBuffers

javax.swing.JCheckBox sortBuffers

sortByName

javax.swing.JCheckBox sortByName

newKeyboardHandling

javax.swing.JCheckBox newKeyboardHandling

Class org.gjt.sp.jedit.options.GlobalOptions extends OptionsDialog implements Serializable

Serialized Fields

jEditGroup

OptionGroup jEditGroup

browserGroup

OptionGroup browserGroup

Class org.gjt.sp.jedit.options.GutterOptionPane extends AbstractOptionPane implements Serializable

Serialized Fields

gutterFont

FontSelector gutterFont

gutterForeground

ColorWellButton gutterForeground

gutterBackground

ColorWellButton gutterBackground

gutterHighlightInterval

javax.swing.JTextField gutterHighlightInterval

gutterHighlightColor

ColorWellButton gutterHighlightColor

lineNumbersEnabled

javax.swing.JCheckBox lineNumbersEnabled

gutterCurrentLineHighlightEnabled

javax.swing.JCheckBox gutterCurrentLineHighlightEnabled

gutterCurrentLineHighlight

ColorWellButton gutterCurrentLineHighlight

gutterStructureHighlightEnabled

javax.swing.JCheckBox gutterStructureHighlightEnabled

gutterStructureHighlight

ColorWellButton gutterStructureHighlight

gutterMarkerHighlightEnabled

javax.swing.JCheckBox gutterMarkerHighlightEnabled

gutterMarkerHighlight

ColorWellButton gutterMarkerHighlight

gutterFoldMarkers

ColorWellButton gutterFoldMarkers

gutterFocusBorder

ColorWellButton gutterFocusBorder

gutterNoFocusBorder

ColorWellButton gutterNoFocusBorder

Class org.gjt.sp.jedit.options.MouseOptionPane extends AbstractOptionPane implements Serializable

Serialized Fields

dragAndDrop

javax.swing.JCheckBox dragAndDrop

middleMousePaste

javax.swing.JCheckBox middleMousePaste

joinNonWordChars

javax.swing.JCheckBox joinNonWordChars

gutterClickActions

javax.swing.JComboBox[] gutterClickActions

Class org.gjt.sp.jedit.options.PluginManagerOptionPane extends AbstractOptionPane implements Serializable

Serialized Fields

locationLabel

javax.swing.JLabel locationLabel

mirrorLabel

javax.swing.JLabel mirrorLabel

locGrp

javax.swing.ButtonGroup locGrp

settingsDir

javax.swing.JRadioButton settingsDir

appDir

javax.swing.JRadioButton appDir

downloadSource

javax.swing.JCheckBox downloadSource

deleteDownloads

javax.swing.JCheckBox deleteDownloads

miraModel

org.gjt.sp.jedit.options.PluginManagerOptionPane.MirrorModel miraModel

miraList

javax.swing.JList miraList

Class org.gjt.sp.jedit.options.PluginOptions extends OptionsDialog implements Serializable

Serialized Fields

pluginsGroup

OptionGroup pluginsGroup

Class org.gjt.sp.jedit.options.PluginOptions.NoPluginsPane extends AbstractOptionPane implements Serializable

Class org.gjt.sp.jedit.options.PrintOptionPane extends AbstractOptionPane implements Serializable

Serialized Fields

font

FontSelector font

printHeader

javax.swing.JCheckBox printHeader

printFooter

javax.swing.JCheckBox printFooter

printLineNumbers

javax.swing.JCheckBox printLineNumbers

color

javax.swing.JCheckBox color

tabSize

javax.swing.JComboBox tabSize

glyphVector

javax.swing.JCheckBox glyphVector

force13

javax.swing.JCheckBox force13

Class org.gjt.sp.jedit.options.SaveBackupOptionPane extends AbstractOptionPane implements Serializable

Serialized Fields

twoStageSave

javax.swing.JCheckBox twoStageSave

confirmSaveAll

javax.swing.JCheckBox confirmSaveAll

autosave

javax.swing.JTextField autosave

backups

javax.swing.JTextField backups

backupDirectory

javax.swing.JTextField backupDirectory

backupPrefix

javax.swing.JTextField backupPrefix

backupSuffix

javax.swing.JTextField backupSuffix

backupEverySave

javax.swing.JCheckBox backupEverySave

Class org.gjt.sp.jedit.options.ShortcutsOptionPane extends AbstractOptionPane implements Serializable

Serialized Fields

keyTable

javax.swing.JTable keyTable

models

java.util.Vector models

currentModel

org.gjt.sp.jedit.options.ShortcutsOptionPane.ShortcutsModel currentModel

selectModel

javax.swing.JComboBox selectModel

allBindings

java.util.Vector allBindings

Class org.gjt.sp.jedit.options.StatusBarOptionPane extends AbstractOptionPane implements Serializable

Serialized Fields

statusVisible

javax.swing.JCheckBox statusVisible

foregroundColor

ColorWellButton foregroundColor

backgroundColor

ColorWellButton backgroundColor

showCaretStatus

javax.swing.JCheckBox showCaretStatus

showEditMode

javax.swing.JCheckBox showEditMode

showFoldMode

javax.swing.JCheckBox showFoldMode

showEncoding

javax.swing.JCheckBox showEncoding

showWrap

javax.swing.JCheckBox showWrap

showMultiSelect

javax.swing.JCheckBox showMultiSelect

showRectSelect

javax.swing.JCheckBox showRectSelect

showOverwrite

javax.swing.JCheckBox showOverwrite

showLineSeperator

javax.swing.JCheckBox showLineSeperator

showMemory

javax.swing.JCheckBox showMemory

memForegroundColor

ColorWellButton memForegroundColor

memBackgroundColor

ColorWellButton memBackgroundColor

showClock

javax.swing.JCheckBox showClock

Class org.gjt.sp.jedit.options.SyntaxHiliteOptionPane extends AbstractOptionPane implements Serializable

Serialized Fields

styleModel

org.gjt.sp.jedit.options.StyleTableModel styleModel

styleTable

javax.swing.JTable styleTable

Class org.gjt.sp.jedit.options.TextAreaOptionPane extends AbstractOptionPane implements Serializable

Serialized Fields

font

FontSelector font

foregroundColor

ColorWellButton foregroundColor

backgroundColor

ColorWellButton backgroundColor

blinkCaret

javax.swing.JCheckBox blinkCaret

blockCaret

javax.swing.JCheckBox blockCaret

caretColor

ColorWellButton caretColor

selectionColor

ColorWellButton selectionColor

multipleSelectionColor

ColorWellButton multipleSelectionColor

lineHighlight

javax.swing.JCheckBox lineHighlight

lineHighlightColor

ColorWellButton lineHighlightColor

structureHighlight

javax.swing.JCheckBox structureHighlight

structureHighlightColor

ColorWellButton structureHighlightColor

eolMarkers

javax.swing.JCheckBox eolMarkers

eolMarkerColor

ColorWellButton eolMarkerColor

wrapGuide

javax.swing.JCheckBox wrapGuide

wrapGuideColor

ColorWellButton wrapGuideColor

electricBorders

javax.swing.JCheckBox electricBorders

antiAlias

javax.swing.JComboBox antiAlias

fracFontMetrics

javax.swing.JCheckBox fracFontMetrics

stripTrailingEOL

javax.swing.JCheckBox stripTrailingEOL

Class org.gjt.sp.jedit.options.ToolBarOptionPane extends AbstractOptionPane implements Serializable

Serialized Fields

showToolbar

javax.swing.JCheckBox showToolbar

listModel

javax.swing.DefaultListModel listModel

list

javax.swing.JList list

add

RolloverButton add

remove

RolloverButton remove

moveUp

RolloverButton moveUp

moveDown

RolloverButton moveDown

edit

RolloverButton edit

iconList

javax.swing.DefaultComboBoxModel iconList

Class org.gjt.sp.jedit.options.ViewOptionPane extends AbstractOptionPane implements Serializable

Serialized Fields

layout

javax.swing.JLabel layout

layoutIcon1

javax.swing.Icon layoutIcon1

layoutIcon2

javax.swing.Icon layoutIcon2

layoutIcon3

javax.swing.Icon layoutIcon3

layoutIcon4

javax.swing.Icon layoutIcon4

alternateDockingLayout

javax.swing.JButton alternateDockingLayout

alternateToolBarLayout

javax.swing.JButton alternateToolBarLayout

showFullPath

javax.swing.JCheckBox showFullPath

showSearchbar

javax.swing.JCheckBox showSearchbar

beepOnSearchAutoWrap

javax.swing.JCheckBox beepOnSearchAutoWrap

showBufferSwitcher

javax.swing.JCheckBox showBufferSwitcher

Package org.gjt.sp.jedit.pluginmgr

Class org.gjt.sp.jedit.pluginmgr.ManagePanel extends javax.swing.JPanel implements Serializable

Serialized Fields

hideLibraries

javax.swing.JCheckBox hideLibraries

table

javax.swing.JTable table

pluginModel

org.gjt.sp.jedit.pluginmgr.ManagePanel.PluginTableModel pluginModel

window

PluginManager window

Class org.gjt.sp.jedit.pluginmgr.PluginManager extends javax.swing.JFrame implements Serializable

Serialized Fields

tabPane

javax.swing.JTabbedPane tabPane

done

javax.swing.JButton done

mgrOptions

javax.swing.JButton mgrOptions

pluginOptions

javax.swing.JButton pluginOptions

installer

org.gjt.sp.jedit.pluginmgr.InstallPanel installer

updater

org.gjt.sp.jedit.pluginmgr.InstallPanel updater

manager

ManagePanel manager

pluginList

org.gjt.sp.jedit.pluginmgr.PluginList pluginList

queuedUpdate

boolean queuedUpdate

downloadingPluginList

boolean downloadingPluginList

Package org.gjt.sp.jedit.search

Class org.gjt.sp.jedit.search.HyperSearchResults extends javax.swing.JPanel implements Serializable

Serialized Fields

view

View view

caption

javax.swing.JLabel caption

resultTree

javax.swing.JTree resultTree

resultTreeRoot

javax.swing.tree.DefaultMutableTreeNode resultTreeRoot

resultTreeModel

javax.swing.tree.DefaultTreeModel resultTreeModel

clear

RolloverButton clear

multi

RolloverButton multi

multiStatus

boolean multiStatus

Class org.gjt.sp.jedit.search.SearchBar extends javax.swing.JPanel implements Serializable

Serialized Fields

view

View view

find

HistoryTextField find

ignoreCase

javax.swing.JCheckBox ignoreCase

regexp

javax.swing.JCheckBox regexp

hyperSearch

javax.swing.JCheckBox hyperSearch

timer

javax.swing.Timer timer

close

RolloverButton close

searchStart

int searchStart

searchReverse

boolean searchReverse

temp

boolean temp

Class org.gjt.sp.jedit.search.SearchDialog extends EnhancedDialog implements Serializable

Serialized Fields

view

View view

find

HistoryTextArea find

replace

HistoryTextArea replace

stringReplace

javax.swing.JRadioButton stringReplace

beanShellReplace

javax.swing.JRadioButton beanShellReplace

keepDialog

javax.swing.JCheckBox keepDialog

ignoreCase

javax.swing.JCheckBox ignoreCase

regexp

javax.swing.JCheckBox regexp

hyperSearch

javax.swing.JCheckBox hyperSearch

wrap

javax.swing.JCheckBox wrap

searchBack

javax.swing.JRadioButton searchBack

searchForward

javax.swing.JRadioButton searchForward

searchSelection

javax.swing.JRadioButton searchSelection

searchCurrentBuffer

javax.swing.JRadioButton searchCurrentBuffer

searchAllBuffers

javax.swing.JRadioButton searchAllBuffers

searchDirectory

javax.swing.JRadioButton searchDirectory

filter

HistoryTextField filter

directory

HistoryTextField directory

searchSubDirectories

javax.swing.JCheckBox searchSubDirectories

skipBinaryFiles

javax.swing.JCheckBox skipBinaryFiles

skipHidden

javax.swing.JCheckBox skipHidden

choose

javax.swing.JButton choose

synchronize

javax.swing.JButton synchronize

findBtn

javax.swing.JButton findBtn

replaceAndFindBtn

javax.swing.JButton replaceAndFindBtn

replaceAllBtn

javax.swing.JButton replaceAllBtn

closeBtn

javax.swing.JButton closeBtn

saving

boolean saving

Package org.gjt.sp.jedit.textarea

Class org.gjt.sp.jedit.textarea.Gutter extends javax.swing.JComponent implements Serializable

Serialized Fields

view

View view

textArea

JEditTextArea textArea

extensionMgr

org.gjt.sp.jedit.textarea.ExtensionManager extensionMgr

baseline

int baseline

gutterSize

java.awt.Dimension gutterSize

collapsedSize

java.awt.Dimension collapsedSize

intervalHighlight

java.awt.Color intervalHighlight

currentLineHighlight

java.awt.Color currentLineHighlight

foldColor

java.awt.Color foldColor

fm

java.awt.FontMetrics fm

alignment

int alignment

interval

int interval

currentLineHighlightEnabled

boolean currentLineHighlightEnabled

expanded

boolean expanded

structureHighlight

boolean structureHighlight

structureHighlightColor

java.awt.Color structureHighlightColor

borderWidth

int borderWidth

focusBorder

javax.swing.border.Border focusBorder

noFocusBorder

javax.swing.border.Border noFocusBorder

Class org.gjt.sp.jedit.textarea.JEditTextArea extends javax.swing.JComponent implements Serializable

Serialized Fields

lineSegment

javax.swing.text.Segment lineSegment

mouseHandler

org.gjt.sp.jedit.textarea.MouseHandler mouseHandler

chunkCache

org.gjt.sp.jedit.textarea.ChunkCache chunkCache

repaintMgr

org.gjt.sp.jedit.textarea.FastRepaintManager repaintMgr

displayManager

DisplayManager displayManager

selectionManager

org.gjt.sp.jedit.textarea.SelectionManager selectionManager

bufferChanging

boolean bufferChanging

maxHorizontalScrollWidth

int maxHorizontalScrollWidth

wrap

java.lang.String wrap

hardWrap

boolean hardWrap

softWrap

boolean softWrap

wrapToWidth

boolean wrapToWidth

maxLineLen

int maxLineLen

wrapMargin

int wrapMargin

tabSize

float tabSize

charWidth

int charWidth

scrollBarsInitialized

boolean scrollBarsInitialized

offsetXY

java.awt.Point offsetXY
Cursor location, measured as an offset (in pixels) from upper left corner of the TextArea.


lastLinePartial

boolean lastLinePartial

blink

boolean blink

hiddenCursor

java.awt.Cursor hiddenCursor

view

View view

gutter

Gutter gutter

painter

TextAreaPainter painter

popup

javax.swing.JPopupMenu popup

popupEnabled

boolean popupEnabled

listenerList

javax.swing.event.EventListenerList listenerList

caretEvent

org.gjt.sp.jedit.textarea.JEditTextArea.MutableCaretEvent caretEvent

caretBlinks

boolean caretBlinks

physLastLine

int physLastLine

screenLastLine

int screenLastLine

visibleLines

int visibleLines

electricScroll

int electricScroll

horizontalOffset

int horizontalOffset

quickCopy

boolean quickCopy

verticalBox

javax.swing.Box verticalBox

vertical

javax.swing.JScrollBar vertical

horizontal

javax.swing.JScrollBar horizontal

buffer

JEditBuffer buffer

caret

int caret

caretLine

int caretLine

caretScreenLine

int caretScreenLine

structureMatchers

java.util.List structureMatchers

match

StructureMatcher.Match match

magicCaret

int magicCaret

multi

boolean multi

overwrite

boolean overwrite

rectangularSelectionMode

boolean rectangularSelectionMode

dndEnabled

boolean dndEnabled

dndInProgress

boolean dndInProgress

queuedCaretUpdate

boolean queuedCaretUpdate

queuedScrollMode

int queuedScrollMode

queuedFireCaretEvent

boolean queuedFireCaretEvent

oldCaretLine

int oldCaretLine

joinNonWordChars

boolean joinNonWordChars

Class org.gjt.sp.jedit.textarea.TextAreaBorder extends javax.swing.border.AbstractBorder implements Serializable

Class org.gjt.sp.jedit.textarea.TextAreaPainter extends javax.swing.JComponent implements Serializable

Serialized Fields

textArea

JEditTextArea textArea

styles

SyntaxStyle[] styles

caretColor

java.awt.Color caretColor

selectionColor

java.awt.Color selectionColor

multipleSelectionColor

java.awt.Color multipleSelectionColor

lineHighlightColor

java.awt.Color lineHighlightColor

structureHighlightColor

java.awt.Color structureHighlightColor

eolMarkerColor

java.awt.Color eolMarkerColor

wrapGuideColor

java.awt.Color wrapGuideColor

foldLineStyle

SyntaxStyle[] foldLineStyle

blockCaret

boolean blockCaret

lineHighlight

boolean lineHighlight

structureHighlight

boolean structureHighlight

eolMarkers

boolean eolMarkers

wrapGuide

boolean wrapGuide

antiAlias

AntiAlias antiAlias

fracFontMetrics

boolean fracFontMetrics

fm

java.awt.FontMetrics fm

extensionMgr

org.gjt.sp.jedit.textarea.ExtensionManager extensionMgr

caretExtension

org.gjt.sp.jedit.textarea.TextAreaPainter.PaintCaret caretExtension

renderingHints

java.awt.RenderingHints renderingHints

fontRenderContext

java.awt.font.FontRenderContext fontRenderContext

fonts

java.util.HashMap fonts

Package org.gjt.sp.util

Class org.gjt.sp.util.CharIndexedSegment extends java.lang.Object implements Serializable

Serialized Fields

seg

javax.swing.text.Segment seg
Deprecated. 

m_index

int m_index
Deprecated. 

reverse

boolean reverse
Deprecated. 

Class org.gjt.sp.util.SegmentCharSequence extends java.lang.Object implements Serializable

Serialized Fields

reverse

boolean reverse

offset

int offset

length

int length

seg

javax.swing.text.Segment seg

Class org.gjt.sp.util.WorkThread.Abort extends java.lang.Error implements Serializable