Serialized Form


Package qat.common

Class qat.common.TestObject extends java.lang.Object implements Serializable

Serialization Methods

readObject

public void readObject(java.io.DataInputStream in)
                throws java.io.IOException,
                       java.lang.ClassNotFoundException

writeObject

public void writeObject(java.io.DataOutputStream out)
                 throws java.io.IOException
Serialized Fields

instanceId

java.lang.String instanceId

executeCommand

java.lang.String[] executeCommand

executeEnvironment

java.util.Properties executeEnvironment

stdErrFileName

java.io.File stdErrFileName

stdOutFileName

java.io.File stdOutFileName

envFileName

java.io.File envFileName

workDirectory

java.lang.String workDirectory

timeOut

int timeOut


Package qat.components

Class qat.components.ComboList extends javax.swing.JPanel implements Serializable

Serialized Fields

label

javax.swing.JLabel label

field

javax.swing.JComboBox field

Class qat.components.ComboText extends javax.swing.JPanel implements Serializable

Serialized Fields

label

javax.swing.JLabel label

field

javax.swing.JTextField field

Class qat.components.EComboBox extends javax.swing.JPanel implements Serializable

Serialized Fields

addButton

javax.swing.JButton addButton

delButton

javax.swing.JButton delButton

editPanel

javax.swing.JPanel editPanel

comboBox

javax.swing.JComboBox comboBox

Class qat.components.Gauge extends javax.swing.JComponent implements Serializable

Serialized Fields

min

double min

max

double max

passedColor

java.awt.Color passedColor

failedColor

java.awt.Color failedColor

unresolvedColor

java.awt.Color unresolvedColor

notrunColor

java.awt.Color notrunColor

pendingColor

java.awt.Color pendingColor

width

int width

height

int height

boxHeight

int boxHeight

boxCount

int boxCount

percentPassed

double percentPassed

percentFailed

double percentFailed

percentUnresolved

double percentUnresolved

percentNotRun

double percentNotRun

percentPending

double percentPending

Class qat.components.Notepad extends javax.swing.JPanel implements Serializable

Serialized Fields

syntaxHighlighting

boolean syntaxHighlighting

parser

ParserInterface parser

file

java.io.File file

threadRunning

boolean threadRunning

editor

javax.swing.JTextPane editor

commands

java.util.Hashtable commands

menuItems

java.util.Hashtable menuItems

menubar

javax.swing.JMenuBar menubar

toolbar

javax.swing.JToolBar toolbar

status

Notepad.StatusBar status

fileDialog

java.awt.FileDialog fileDialog

undoHandler

javax.swing.event.UndoableEditListener undoHandler
Listener for the edits on the current document.


undo

javax.swing.undo.UndoManager undo
UndoManager that we add edits to.


undoAction

Notepad.UndoAction undoAction

redoAction

Notepad.RedoAction redoAction

defaultActions

javax.swing.Action[] defaultActions
Actions defined by the Notepad class

Class qat.components.ParserDocument extends javax.swing.text.DefaultStyledDocument implements Serializable

Serialized Fields

keyword

javax.swing.text.SimpleAttributeSet keyword

string

javax.swing.text.SimpleAttributeSet string

normal

javax.swing.text.SimpleAttributeSet normal

number

javax.swing.text.SimpleAttributeSet number

comments

javax.swing.text.SimpleAttributeSet comments

separator

javax.swing.text.SimpleAttributeSet separator

currentPos

int currentPos

keywordSet

java.util.ArrayList keywordSet

separatorSet

java.util.ArrayList separatorSet

separators

java.lang.String separators

lineStart

int lineStart

attribList

int[] attribList

Class qat.components.StatusWindow extends javax.swing.JFrame implements Serializable

Serialized Fields

msgLabel

javax.swing.JLabel msgLabel

gauge

javax.swing.JProgressBar gauge

parent

QAT parent


Package qat.gui

Class qat.gui.AboutDialog extends javax.swing.JDialog implements Serializable

Class qat.gui.AgentConsole extends javax.swing.JFrame implements Serializable

Serialized Fields

index

java.lang.String index

name

java.lang.String name

port

int port

debugLevel

int debugLevel

maxBytes

int maxBytes

console

javax.swing.JTextArea console

detailText

javax.swing.JTextArea detailText

viewPort

javax.swing.JViewport viewPort

running

boolean running

Class qat.gui.AgentInfo extends javax.swing.JDialog implements Serializable

Serialized Fields

addAgentButton

javax.swing.JButton addAgentButton

editAgentButton

javax.swing.JButton editAgentButton

delAgentButton

javax.swing.JButton delAgentButton

killAgentsButton

javax.swing.JButton killAgentsButton

refreshAgentsButton

javax.swing.JButton refreshAgentsButton

discoverAgentsButton

javax.swing.JButton discoverAgentsButton

okButton

javax.swing.JButton okButton

cancelButton

javax.swing.JButton cancelButton

agentTable

javax.swing.JTable agentTable

model

javax.swing.table.DefaultTableModel model

titles

java.lang.String[] titles

original

java.util.Properties original

parent

QAT parent

Class qat.gui.CompareResults extends javax.swing.JFrame implements Serializable

Serialized Fields

matchingResultsTable

javax.swing.JTable matchingResultsTable

differentResultsTable

javax.swing.JTable differentResultsTable

unmatchedResultsTable

javax.swing.JTable unmatchedResultsTable

startCompare

javax.swing.JButton startCompare

resultsPathA

javax.swing.JTextField resultsPathA

resultsPathB

javax.swing.JTextField resultsPathB

scrollPane1

javax.swing.JScrollPane scrollPane1

scrollPane2

javax.swing.JScrollPane scrollPane2

scrollPane3

javax.swing.JScrollPane scrollPane3

browseA

javax.swing.JButton browseA

browseB

javax.swing.JButton browseB

totalMatching

javax.swing.JLabel totalMatching

totalDifferent

javax.swing.JLabel totalDifferent

totalUnmatched

javax.swing.JLabel totalUnmatched

titles

java.lang.Object[] titles

Class qat.gui.EditAgent extends javax.swing.JDialog implements Serializable

Serialized Fields

okButton

javax.swing.JButton okButton

cancelButton

javax.swing.JButton cancelButton

detectButton

javax.swing.JButton detectButton

killButton

javax.swing.JButton killButton

agentName

javax.swing.JTextField agentName

agentPort

javax.swing.JTextField agentPort

agentArch

javax.swing.JTextField agentArch

agentOS

javax.swing.JTextField agentOS

agentNumber

javax.swing.JLabel agentNumber

parent

AgentInfo parent

index

int index

Class qat.gui.EditProject extends javax.swing.JDialog implements Serializable

Serialized Fields

projectProperties

java.util.Properties projectProperties

originalProperties

java.util.Properties originalProperties

keyWordHistoryProperties

java.util.Properties keyWordHistoryProperties

agentProperties

java.util.Properties agentProperties

actions

java.util.Hashtable actions

testDirectoryPath

javax.swing.JTextField testDirectoryPath

browseButton

javax.swing.JButton browseButton

projectPropertiesTextArea

javax.swing.JTextArea projectPropertiesTextArea

systemPropertiesTextArea

javax.swing.JTextArea systemPropertiesTextArea

autosave

javax.swing.JCheckBox autosave

reuseTraceWindow

javax.swing.JCheckBox reuseTraceWindow

syntaxHighlighting

javax.swing.JCheckBox syntaxHighlighting

resetStatus

javax.swing.JCheckBox resetStatus

parserClassName

EComboBox parserClassName

testfinderClassName

EComboBox testfinderClassName

pluginClassNames

EComboBox pluginClassNames

lookAndFeel

javax.swing.JComboBox lookAndFeel

httpPort

ComboText httpPort

bufferSize

ComboText bufferSize

debugLevel

ComboText debugLevel

reloadTests

boolean reloadTests

agentCount

java.lang.String agentCount

propertiesVersion

java.lang.String propertiesVersion

guiPanel

javax.swing.JPanel guiPanel

guiComponents

java.util.ArrayList guiComponents

guiPanelPane

javax.swing.JScrollPane guiPanelPane

parent

QAT parent

tabbedPane

javax.swing.JTabbedPane tabbedPane

Class qat.gui.KeywordComponent extends javax.swing.JComponent implements Serializable

Serialized Fields

passedCheckBox

javax.swing.JCheckBox passedCheckBox

failedCheckBox

javax.swing.JCheckBox failedCheckBox

unresolvedCheckBox

javax.swing.JCheckBox unresolvedCheckBox

notrunCheckBox

javax.swing.JCheckBox notrunCheckBox

allCheckBox

javax.swing.JCheckBox allCheckBox

keyWordExprHist

javax.swing.JComboBox keyWordExprHist

keyWordList

javax.swing.JComboBox keyWordList

keyWordExpr

javax.swing.JTextField keyWordExpr

testTree

TestTree testTree

Class qat.gui.NodeMenu extends javax.swing.JPopupMenu implements Serializable

Serialized Fields

runThisAction

javax.swing.JMenuItem runThisAction

runSelectedAction

javax.swing.JMenuItem runSelectedAction

editAction

javax.swing.JMenuItem editAction

parseThisAction

javax.swing.JMenuItem parseThisAction

parseSelectedAction

javax.swing.JMenuItem parseSelectedAction

reloadDirectoryAction

javax.swing.JMenuItem reloadDirectoryAction

parent

QAT parent

node

TestTreeNode node

editListPropMenu

javax.swing.JMenu editListPropMenu

editListMiscMenu

javax.swing.JMenu editListMiscMenu

viewOutputMenu

javax.swing.JMenu viewOutputMenu

editListPropItems

javax.swing.JMenuItem[] editListPropItems

editListMiscItems

javax.swing.JMenuItem[] editListMiscItems

viewOutputItems

javax.swing.JMenuItem[] viewOutputItems

test

TestSpecification test

traceViewerList

java.util.ArrayList traceViewerList

Class qat.gui.ParserOutputViewer extends javax.swing.JComponent implements Serializable

Serialized Fields

parserText

javax.swing.JEditorPane parserText

testTitle

javax.swing.JLabel testTitle

currTest

TestSpecification currTest

parent

QAT parent

searchButton

javax.swing.JButton searchButton

searchText

javax.swing.JTextField searchText

Class qat.gui.QAT extends javax.swing.JFrame implements Serializable

Serialized Fields

keywordComponent

KeywordComponent keywordComponent

statusLabel

javax.swing.JLabel statusLabel

parserLabel

javax.swing.JLabel parserLabel

serializedTreeName

java.lang.String serializedTreeName

projectProperties

java.util.Properties projectProperties

waitCursor

java.awt.Cursor waitCursor

defaultCursor

java.awt.Cursor defaultCursor

statusGauge

Gauge statusGauge

testTree

TestTree testTree

parserOutputViewer

ParserOutputViewer parserOutputViewer

testDetailViewer

TestDetailViewer testDetailViewer

testRunner

TestRunner testRunner

timerRunner

TimerRunner timerRunner

toolbar

javax.swing.JToolBar toolbar

menuBar

javax.swing.JMenuBar menuBar

consoleMenu

javax.swing.JMenu consoleMenu

pluginMenu

javax.swing.JMenu pluginMenu

pluginList

java.util.Hashtable pluginList

httpQATHandler

HttpQATHandler httpQATHandler

projectFileName

java.lang.String projectFileName

instanceSuffix

java.lang.String instanceSuffix

leftrightSplit

javax.swing.JSplitPane leftrightSplit

topbottomSplit

javax.swing.JSplitPane topbottomSplit

runtimeComponent

RuntimeComponent runtimeComponent

Class qat.gui.RuntimeComponent extends javax.swing.JComponent implements Serializable

Serialized Fields

passedLabel

javax.swing.JLabel passedLabel

failedLabel

javax.swing.JLabel failedLabel

notrunLabel

javax.swing.JLabel notrunLabel

pendingLabel

javax.swing.JLabel pendingLabel

unresolvedLabel

javax.swing.JLabel unresolvedLabel

totalLabel

javax.swing.JLabel totalLabel

elapsedTime

javax.swing.JLabel elapsedTime

remainingTime

javax.swing.JLabel remainingTime

memoryState

javax.swing.JProgressBar memoryState

runProgress

javax.swing.JProgressBar runProgress

parent

QAT parent

Class qat.gui.SplashScreen extends javax.swing.JWindow implements Serializable

Serialized Fields

statusLabel

javax.swing.JLabel statusLabel

splashImage

javax.swing.JLabel splashImage

gauge

javax.swing.JProgressBar gauge

Class qat.gui.TestDetailViewer extends javax.swing.JComponent implements Serializable

Serialized Fields

testDescription

javax.swing.JEditorPane testDescription

testAuthor

javax.swing.JLabel testAuthor

testBugInfo

javax.swing.JLabel testBugInfo

currTest

TestSpecification currTest

outputPanel

javax.swing.JPanel outputPanel

outputList

javax.swing.JList outputList

traceViewer

TraceViewerComponent traceViewer

selectedItem

java.lang.Object selectedItem

parent

QAT parent

Class qat.gui.TestTree extends javax.swing.JComponent implements Serializable

Serialized Fields

tree

javax.swing.JTree tree

treeRoot

TestTreeNode treeRoot

treeView

javax.swing.JScrollPane treeView

nodePopupMenu

NodeMenu nodePopupMenu

nodeMenuListener

TestTree.NodeMenuListener nodeMenuListener

defaultProperties

java.util.Properties defaultProperties

changeListenerList

java.util.ArrayList changeListenerList

selectionListenerList

java.util.ArrayList selectionListenerList

projectFileName

java.lang.String projectFileName

expandLevel

int expandLevel

Class qat.gui.TestTreeModel extends javax.swing.tree.DefaultTreeModel implements Serializable

Serialized Fields

parent

TestTree parent

Class qat.gui.TestTreeNode extends javax.swing.tree.DefaultMutableTreeNode implements Serializable

Class qat.gui.TraceViewer extends javax.swing.JFrame implements Serializable

Serialized Fields

traceViewerComponent

TraceViewerComponent traceViewerComponent

Class qat.gui.TraceViewerComponent extends javax.swing.JComponent implements Serializable

Serialized Fields

env

javax.swing.JEditorPane env

stdout

javax.swing.JEditorPane stdout

stderr

javax.swing.JEditorPane stderr

commandID

java.lang.String commandID

test

TestSpecification test

modifiedLabel

javax.swing.JLabel modifiedLabel

searchButton

javax.swing.JButton searchButton

searchText

javax.swing.JTextField searchText

parent

QAT parent

centerTabPane

javax.swing.JTabbedPane centerTabPane


Package qat.plugins.chorus

Class qat.plugins.chorus.Cash extends javax.swing.JFrame implements Serializable

Serialized Fields

taskManager

TaskManager taskManager

hostNameList

EComboBox hostNameList

currentConsole

Console currentConsole

execp

ExecProcess execp

consoleList

java.util.Hashtable consoleList

consoleViewport

javax.swing.JViewport consoleViewport

canExit

boolean canExit

Class qat.plugins.chorus.Console extends javax.swing.JTextArea implements Serializable

Serialized Fields

promptString

java.lang.String promptString

command

java.lang.String command

foreground

java.awt.Color foreground

background

java.awt.Color background

history

java.util.ArrayList history

historyIndex

int historyIndex

hostName

java.lang.String hostName

Class qat.plugins.chorus.EComboBox extends javax.swing.JPanel implements Serializable

Serialized Fields

addButton

javax.swing.JButton addButton

delButton

javax.swing.JButton delButton

editPanel

javax.swing.JPanel editPanel

comboBox

javax.swing.JComboBox comboBox

Class qat.plugins.chorus.TaskManager extends javax.swing.JPanel implements Serializable

Serialized Fields

host

java.lang.String host

running

boolean running

procList

javax.swing.JTable procList

titles

java.lang.String[] titles

console

Console console

apsCommand

ExecProcess apsCommand

connectedIcon

javax.swing.JButton connectedIcon



See QAT project for licensing details