Serialized Form
Package com.bluemarsh.jswat |
Package com.bluemarsh.jswat.action |
pathElementTable
javax.swing.JTable pathElementTable
- The table that displays the path elements.
pathElementModel
com.bluemarsh.jswat.action.PathBuilder.PathElementTableModel pathElementModel
- The table model that holds the path elements.
addElement
javax.swing.JButton addElement
- The button to add an element.
removeElement
javax.swing.JButton removeElement
- The button to remove an element.
moveUp
javax.swing.JButton moveUp
- The button to move an element towards the front of the path.
moveDown
javax.swing.JButton moveDown
- The button to move an element towards the end of the path.
moveButtonsEnabled
boolean moveButtonsEnabled
- Whether the move buttons are enabled or not.
multiSelectionEnabled
boolean multiSelectionEnabled
- Whether to enabled multi-selection in the file chooser or not.
elements
java.util.Vector elements
- The elements of the path.
startDirectory
java.lang.String startDirectory
- The initial directory to show in the file dialog.
filter
javax.swing.filechooser.FileFilter filter
- A file filter to set on the file chooser.
lastSeenDirectory
java.lang.String lastSeenDirectory
- The last directory seen
Package com.bluemarsh.jswat.breakpoint |
bp
Breakpoint bp
- The breakpoint that changed.
-
type
int type
- The type of breakpoint change.
-
groupName
java.lang.String groupName
- Name of our breakpoint group. Used for display.
isEnabled
boolean isEnabled
- True if this breakpoint group is enabled.
groupList
java.util.List groupList
- List of breakpoint groups in this group.
breakpointList
java.util.List breakpointList
- List of breakpoints in this group.
parentGroup
BreakpointGroup parentGroup
- The breakpoint group to which we belong (always non-null).
commandToRun
java.lang.String commandToRun
- The command to be run.
suspendPolicy
int suspendPolicy
- The thread suspension policy for this request. Must be one of
the
com.sun.jdi.request.EventRequest
suspend constants.
Defaults to SUSPEND_ALL
.
isEnabled
boolean isEnabled
- True if this breakpoint is enabled.
breakpointGroup
BreakpointGroup breakpointGroup
- Breakpoint group that contains us (always non-null).
stoppedCount
int stoppedCount
- Number of times this breakpoint has stopped.
expireCount
int expireCount
- Number of times this breakpoint can be hit before it expires.
If value is zero, breakpoint will not expire.
skipCount
int skipCount
- Number of times this breakpoint will be hit before it stops.
If value is zero, breakpoint will not skip.
conditionList
java.util.List conditionList
- List of conditions this breakpoint depends on.
monitorList
java.util.List monitorList
- List of monitors this breakpoint executes when it stops.
propertyList
java.util.Hashtable propertyList
- Table of named properties stored in this breakpoint.
deleteOnExpire
boolean deleteOnExpire
- True if the breakpoint should be deleted on expiration.
group
BreakpointGroup group
- The group that changed.
-
type
int type
- The type of group change.
-
lineNumber
int lineNumber
- Line number of breakpoint.
methodId
java.lang.String methodId
- Name of the method this breakpoint is set at.
methodArgs
java.util.List methodArgs
- List of method arguments (if any are given), where each element
is a String object reprepsenting the argument type in the JNI-style
signature.
className
java.lang.String className
- Name of the class specified, without wildcards.
classPattern
java.lang.String classPattern
- Name of the class specified, possibly with wild cards.
postWild
boolean postWild
- True if class specification is suffixed with a wildcard.
preWild
boolean preWild
- True if class specification is prefixed with a wildcard.
referenceSpec
ReferenceTypeSpec referenceSpec
- Specification for the class this breakpoint is meant for.
nestedException
java.lang.Exception nestedException
- Nested exception, which is likely the true cause of the problem.
variableName
java.lang.String variableName
- Name of the variable to examine.
valueString
java.lang.String valueString
- Original value to compare against, as a String.
Package com.bluemarsh.jswat.breakpoint.ui |
this$0
BasicBreakpointUI this$0
targetBreakpoint
Breakpoint targetBreakpoint
- Breakpoint that we are editing.
uiAdapter
BreakpointUI uiAdapter
- UI adapter for the breakpoint we are editing.
conditionList
javax.swing.JList conditionList
- List showing the conditions, if any.
monitorList
javax.swing.JList monitorList
- List showing the monitors, if any.
breakpointsPanel
BreakPanel breakpointsPanel
- Panel showing the breakpoints.
owningSession
Session owningSession
- Session this dialog is associated with.
Package com.bluemarsh.jswat.event |
types
int types
- The type flags of this context change.
-
Package com.bluemarsh.jswat.panel |
this$0
BreakPanel this$0
disabledIcon
javax.swing.Icon disabledIcon
- Icon for disabled breakpoints.
resolvedIcon
javax.swing.Icon resolvedIcon
- Icon for resolved breakpoints.
this$0
BreakPanel this$0
this$0
BreakPanel this$0
varName
java.lang.String varName
- Name of 'this' variable, e.g. "foo".
typeName
java.lang.String typeName
- Type of 'this' variable, e.g. "int".
textComponent
javax.swing.text.JTextComponent textComponent
- Text component to operate on.
clearMenuItem
javax.swing.JMenuItem clearMenuItem
- The Clear menu item.
copyMenuItem
javax.swing.JMenuItem copyMenuItem
- The Copy menu item.
pasteMenuItem
javax.swing.JMenuItem pasteMenuItem
- The Paste menu item.
selectAllMenuItem
javax.swing.JMenuItem selectAllMenuItem
- The Select All menu item.
objRef
com.sun.jdi.ObjectReference objRef
- Object reference 'this' represents.
valuesMap
java.util.Map valuesMap
- This will eventually be set to the map of values for it.
It should always be accessed via the
ObjectDbgVar.getValuesMap()
method.
Package com.bluemarsh.jswat.parser.java.lexer |
Package com.bluemarsh.jswat.parser.java.node |
cast
Cast cast
Package com.bluemarsh.jswat.parser.java.parser |
token
Token token
Package com.bluemarsh.jswat.parser.unicodepreprocessor.lexer |
Package com.bluemarsh.jswat.parser.unicodepreprocessor.node |
cast
Cast cast
Package com.bluemarsh.jswat.ui |
menubar
javax.swing.JMenuBar menubar
- The menu bar.
-
toolbar
javax.swing.JToolBar toolbar
- The tool bar.
-
this$0
MainWindow this$0
Package com.bluemarsh.jswat.view |
lineStartOffset
int[] lineStartOffset
- Array of start-of-line offsets.
lineEndOffset
int[] lineEndOffset
- Array of end-of-line offsets.
lineCount
int lineCount
- Number of lines in document.
menuItemTable
java.util.Hashtable menuItemTable
- Hashtable of menu items keyed by their names (eg. 'add').
classLines
java.util.List classLines
- List of class definition objects.
lastClickedLine
int lastClickedLine
- If non-zero, the line the user last right-clicked on.
lastClickedClass
java.lang.String lastClickedClass
- If non-null, name of class user last right-clicked within.
lastClickedBreakpoint
Breakpoint lastClickedBreakpoint
- If non-null, breakpoint user last right-clicked on.
content
SourceContent content
- Content that contains the text.
selectionDrawLayer
SelectionDrawLayer selectionDrawLayer
- Draw layer for drawing the current text selection.
drawLayersList
com.bluemarsh.adt.PriorityList drawLayersList
- Draw layers in priority order.
gutterLayersList
com.bluemarsh.adt.PriorityList gutterLayersList
- Draw layers in priority order.
gutterWidth
int gutterWidth
- Width of the gutter.