Serialized Form


Package com.objectwave.appSupport

Class com.objectwave.appSupport.OkCancelDetail implements Serializable

Serialized Fields

panel

ModelSupport panel

pbOk

javax.swing.JButton pbOk

pbClose

javax.swing.JButton pbClose

bkColor

java.awt.Color bkColor

model

OkCancelModel model


Package com.objectwave.persist

Class com.objectwave.persist.QueryException implements Serializable

Serialized Fields

retryPossible

boolean retryPossible

text

java.lang.String text

addInfo

java.lang.String addInfo

originalException

java.lang.Exception originalException

Class com.objectwave.persist.SQLQuery implements Serializable

Serialized Fields

constraints

java.util.HashMap constraints

subject

Persistence subject

queryLike

boolean queryLike

distinct

boolean distinct

attributeSearch

boolean attributeSearch

subQuery

java.util.Vector subQuery

collectionAdapter

CollectionAdapter collectionAdapter

orderByList

java.util.Vector orderByList

constraint

Persistence constraint

objectLimit

int objectLimit


Package com.objectwave.persist.bean

Class com.objectwave.persist.bean.JGrinderQueryBean implements Serializable

Serialization Methods

readObject

public ExampleEmployee readObject()
                           throws QueryException
Throws:
QueryException
Serialized Fields

sessionContext

javax.ejb.SessionContext sessionContext


Package com.objectwave.persist.broker

Class com.objectwave.persist.broker.ObjectPool implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Since the object editor is transient we need to initialize it. This implies that there can be NO outstanding transactions when we serialize the business object.

Serialized Fields

verbose

boolean verbose

defaultPoolSize

int defaultPoolSize

Class com.objectwave.persist.broker.ObjectPoolBroker implements Serializable

Serialized Fields

verbose

boolean verbose

inTransaction

boolean inTransaction

changed

java.util.ArrayList changed

transactionChanged

java.util.ArrayList transactionChanged

transactionDelete

java.util.ArrayList transactionDelete

zero

java.lang.Long zero

trackingChangedObjects

boolean trackingChangedObjects

connected

boolean connected

pool

ObjectPool pool

saveCount

int saveCount
Used for generating new primaryKeyValues. This is safe, since I'm only working in my memory. When it is 'really' saved, the values will be discarded and any related objects will be updated.


Package com.objectwave.persist.collectionAdapters

Class com.objectwave.persist.collectionAdapters.ArrayListCollectionAdapter implements Serializable

Serialized Fields

dataObject

java.util.ArrayList dataObject

Class com.objectwave.persist.collectionAdapters.HashMapCollectionAdapter implements Serializable

Serialized Fields

dataObject

java.util.HashMap dataObject

Class com.objectwave.persist.collectionAdapters.HashtableCollectionAdapter implements Serializable

Serialized Fields

dataObject

java.util.Hashtable dataObject

Class com.objectwave.persist.collectionAdapters.LinkedListCollectionAdapter implements Serializable

Serialized Fields

dataObject

java.util.LinkedList dataObject

Class com.objectwave.persist.collectionAdapters.VectorCollectionAdapter implements Serializable

Serialized Fields

dataObject

java.util.ArrayList dataObject

specifiedResult

java.util.Vector specifiedResult


Package com.objectwave.persist.constraints

Class com.objectwave.persist.constraints.Constraint implements Serializable

Serialized Fields

columnName

java.lang.String columnName

field

java.lang.String field
This is a required field. This is the name of the field on the persistent object. It will be mapped to a database column.


not

boolean not

p

Persistence p
This is a required field. With out this, the actual database column can not be determined.

Class com.objectwave.persist.constraints.ConstraintAnyOf implements Serializable

Serialized Fields

anyOf

java.util.Vector anyOf

Class com.objectwave.persist.constraints.ConstraintBetween implements Serializable

Serialized Fields

betweenMin

java.lang.String betweenMin
Description of the Field


betweenMax

java.lang.String betweenMax
Description of the Field

Class com.objectwave.persist.constraints.ConstraintBoolean implements Serializable

Serialized Fields

isAnd

boolean isAnd

left

Constraint left

right

Constraint right

Class com.objectwave.persist.constraints.ConstraintCompare implements Serializable

Serialized Fields

comparison

int comparison

comparisonValue

java.lang.String comparisonValue

Class com.objectwave.persist.constraints.ConstraintIsNull implements Serializable

Class com.objectwave.persist.constraints.ConstraintSubSelect implements Serializable

Serialized Fields

subSelectQuery

SQLQuery subSelectQuery

subSelectField

java.lang.String subSelectField

Class com.objectwave.persist.constraints.CrossField implements Serializable

Serialized Fields

isAnd

boolean isAnd

left

Constraint left

right

Constraint right


Package com.objectwave.persist.constraints.gui

Class com.objectwave.persist.constraints.gui.AnyOfGui implements Serializable

Serialized Fields

selectField

javax.swing.JComboBox selectField

list

javax.swing.JList list

model

AnyOfGui.MyListModel model

notCB

javax.swing.JCheckBox notCB

editable

javax.swing.JTextField editable

constraintAnyOf

ConstraintAnyOf constraintAnyOf

Class com.objectwave.persist.constraints.gui.BetweenGui implements Serializable

Serialized Fields

selectFieldCB

javax.swing.JComboBox selectFieldCB

notCB

javax.swing.JCheckBox notCB

betweenMinTF

javax.swing.JTextField betweenMinTF

betweenMaxTF

javax.swing.JTextField betweenMaxTF

constraintBetween

ConstraintBetween constraintBetween

Class com.objectwave.persist.constraints.gui.CompareGui implements Serializable

Serialized Fields

selectFieldCB

javax.swing.JComboBox selectFieldCB

comparisonCB

javax.swing.JComboBox comparisonCB

notCB

javax.swing.JCheckBox notCB

compValueTF

javax.swing.JTextField compValueTF

constraintCompare

ConstraintCompare constraintCompare

Class com.objectwave.persist.constraints.gui.IsNullGui implements Serializable

Serialized Fields

selectField

javax.swing.JComboBox selectField

isNull

javax.swing.JRadioButton isNull

isntNull

javax.swing.JRadioButton isntNull

buttonGroup

javax.swing.ButtonGroup buttonGroup

editable

javax.swing.JTextField editable

constraintIsNull

ConstraintIsNull constraintIsNull


Package com.objectwave.persist.examples

Class com.objectwave.persist.examples.DomainObject implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Since the object editor is transient we need to initialize it. This implies that there can be NO outstanding transactions when we serialize the business object.

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Allow the setting of some custom serialized fields.

Throws:
java.io.IOException
Serialized Fields

objectIdentifier

java.lang.Integer objectIdentifier

printString

java.lang.String printString

xmlInit

boolean xmlInit

xmlInitString

java.lang.String xmlInitString

Class com.objectwave.persist.examples.ExampleCompany implements Serializable

Serialized Fields

employees

ExampleEmployee[] employees

ceo

ExampleEmployee ceo

Class com.objectwave.persist.examples.ExampleEmployee implements Serializable

Serialized Fields

title

java.lang.String title

emailAddress

java.lang.String emailAddress

person

ExamplePerson person

boss

ExampleEmployee boss

workers

java.util.Vector workers

company

ExampleCompany company

Class com.objectwave.persist.examples.ExamplePerson implements Serializable

Serialized Fields

name

java.lang.String name

employee

ExampleEmployee employee

Class com.objectwave.persist.examples.InvertEmployeePersistence implements Serializable

Class com.objectwave.persist.examples.InvertEmployeePersistenceBase implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Since the object editor is transient we need to initialize it. This implies that there can be NO outstanding transactions when we serialize the business object.

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Allow the setting of some custom serialized fields.

Throws:
java.io.IOException
Serialized Fields

classDescriptor

java.util.Vector classDescriptor

tableName

java.lang.String tableName

objectIdentifier

java.lang.Integer objectIdentifier

printString

java.lang.String printString

xmlInitString

java.lang.String xmlInitString

Class com.objectwave.persist.examples.InvertPersonPersistence implements Serializable

Serialized Fields

commandMap

java.util.HashMap commandMap

Class com.objectwave.persist.examples.InvertPersonPersistenceBase implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Since the object editor is transient we need to initialize it. This implies that there can be NO outstanding transactions when we serialize the business object.

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Allow the setting of some custom serialized fields.

Throws:
java.io.IOException
Serialized Fields

classDescriptor

java.util.Vector classDescriptor

tableName

java.lang.String tableName

objectIdentifier

java.lang.Integer objectIdentifier

printString

java.lang.String printString

xmlInitString

java.lang.String xmlInitString

Class com.objectwave.persist.examples.JoinObject implements Serializable

Serialized Fields

linkToOne

ManySideOne linkToOne

linkToTwo

ManySideTwo linkToTwo

dummyField

java.lang.Integer dummyField

Class com.objectwave.persist.examples.ManySideOne implements Serializable

Serialized Fields

title

java.lang.String title

emailAddress

java.lang.String emailAddress

joinObjects

java.util.Vector joinObjects

Class com.objectwave.persist.examples.ManySideTwo implements Serializable

Serialized Fields

title

java.lang.String title

joinObjects

java.util.Vector joinObjects

instanceLink

JoinObject instanceLink

instanceLinkWCol

JoinObject instanceLinkWCol

fkLink

JoinObject fkLink

Class com.objectwave.persist.examples.TestCompany implements Serializable

Serialized Fields

name

java.lang.String name

phone

java.lang.String phone

fax

java.lang.String fax

moodyRating

java.lang.String moodyRating

numEmployees

int numEmployees

primaryContact

TestPerson primaryContact

Class com.objectwave.persist.examples.TestEntity implements Serializable

Serialized Fields

name

java.lang.String name

phone

java.lang.String phone

fax

java.lang.String fax

title

java.lang.String title

annualIncome

double annualIncome

moodyRating

java.lang.String moodyRating

numEmployees

int numEmployees

primaryContact

TestPerson primaryContact

Class com.objectwave.persist.examples.TestPerson implements Serializable

Serialized Fields

name

java.lang.String name

phone

java.lang.String phone

fax

java.lang.String fax

title

java.lang.String title

annualIncome

double annualIncome


Package com.objectwave.persist.gui

Class com.objectwave.persist.gui.DeleteTreeUI implements Serializable

Serialized Fields

popup

javax.swing.JPopupMenu popup

tree

javax.swing.JTree tree

model

DeleteTree model

attributeTableModel

PersistenceAttributeTableModel attributeTableModel

Class com.objectwave.persist.gui.PersistenceAttributeTableModel implements Serializable

Serialized Fields

subject

Persistence subject

Class com.objectwave.persist.gui.SelectAllowableClasses implements Serializable

Serialized Fields

cList

ComponentList cList

items

javax.swing.JCheckBox[] items

tfOthers

javax.swing.JTextField tfOthers

list

FileList list


Package com.objectwave.persist.invert

Class com.objectwave.persist.invert.PersistenceBase implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Since the object editor is transient we need to initialize it. This implies that there can be NO outstanding transactions when we serialize the business object.

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws java.io.IOException
Allow the setting of some custom serialized fields.

Throws:
java.io.IOException
Serialized Fields

objectIdentifier

java.lang.Integer objectIdentifier

printString

java.lang.String printString

xmlInitString

java.lang.String xmlInitString


Package com.objectwave.persist.mapping

Class com.objectwave.persist.mapping.JoinAdapter implements Serializable

Serialized Fields

dummyField

java.lang.Integer dummyField

Class com.objectwave.persist.mapping.RDBExtendablePersistentAdapter implements Serializable

Serialized Fields

typeCol

AttributeTypeColumn typeCol

Class com.objectwave.persist.mapping.RDBPersistentAdapter implements Serializable

Serialized Fields

brokerGeneratedPrimaryKeys

boolean brokerGeneratedPrimaryKeys

skipScalarCheck

boolean skipScalarCheck

proxy

boolean proxy

brokerName

java.lang.String brokerName

retrieved

boolean retrieved

deleteThis

boolean deleteThis

collectionQueries

java.util.Hashtable collectionQueries


Package com.objectwave.persist.util

Class com.objectwave.persist.util.DateWithoutTime implements Serializable

Serialized Fields

date

java.util.Date date


Package com.objectwave.persist.xml

Class com.objectwave.persist.xml.TestSampleXML implements Serializable

Serialized Fields

id

java.lang.String id

fieldName_attribute

java.lang.String fieldName_attribute

fieldName_collection

java.lang.String fieldName_collection

fieldName_instance1

java.lang.String fieldName_instance1

fieldName_instance2

java.lang.String fieldName_instance2

fieldName_foreign

java.lang.String fieldName_foreign

fieldName_typeatt

java.lang.String fieldName_typeatt

Class com.objectwave.persist.xml.TestXMLCompany implements Serializable

Serialized Fields

name

java.lang.String name

address

java.lang.String address

employees

java.util.Vector employees

founders

java.util.Vector founders

Class com.objectwave.persist.xml.TestXMLPerson implements Serializable

Serialized Fields

name

java.lang.String name

phone

java.lang.String phone

fax

java.lang.String fax

title

java.lang.String title

annualIncome

double annualIncome

company

TestXMLCompany company

founderOf

TestXMLCompany founderOf


Package com.objectwave.persist.xml.test

Class com.objectwave.persist.xml.test.Person implements Serializable

Serialized Fields

age

int age

firstName

java.lang.String firstName

lastName

java.lang.String lastName

personPhone

java.util.Vector personPhone

personPhone2

PersonPhone personPhone2

Class com.objectwave.persist.xml.test.PersonPhone implements Serializable

Serialized Fields

oid

long oid

person

Person person

phone

Phone phone

Class com.objectwave.persist.xml.test.Phone implements Serializable

Serialized Fields

prefix

java.lang.String prefix

phoneNumber

java.lang.String phoneNumber

extension

java.lang.String extension


Package com.objectwave.transactionalSupport

Class com.objectwave.transactionalSupport.NoFieldObjectEditor implements Serializable

Serialized Fields

verbose

boolean verbose

isTransient

boolean isTransient

domainObject

TransactionalObjectIF domainObject

data

java.lang.Object[] data

Class com.objectwave.transactionalSupport.ObjectEditor implements Serializable

Serialized Fields

isTransient

boolean isTransient

domainObject

TransactionalObjectIF domainObject

Class com.objectwave.transactionalSupport.UpdateException implements Serializable

Serialized Fields

exception

java.lang.Exception exception


Package com.objectwave.transactionalSupport.test

Class com.objectwave.transactionalSupport.test.DomainObject implements Serializable

Class com.objectwave.transactionalSupport.test.TestEntity implements Serializable

Serialized Fields

name

java.lang.String name

id

int id


Package com.objectwave.transactSecurity

Class com.objectwave.transactSecurity.ObjectAccessEvent implements Serializable

Serialized Fields

type

ObjectAccessEvent type

field

java.lang.reflect.Field field


Package com.objectwave.appArch.admin

Class com.objectwave.appArch.admin.Command implements Serializable

Serialized Fields

name

java.lang.String name

description

java.lang.String description

args

DataItem[] args

retValues

DataItem[] retValues

Class com.objectwave.appArch.admin.DataItem implements Serializable

Serialized Fields

name

java.lang.String name

type

java.lang.String type

value

java.lang.String value

description

java.lang.String description

Class com.objectwave.appArch.admin.UnsupportedCommand implements Serializable

Serialized Fields

reason

java.lang.String reason


Package com.objectwave.configuration.bean

Class com.objectwave.configuration.bean.ConfigurationServiceBean implements Serializable

Serialized Fields

propLookup

java.util.Properties propLookup

sessionContext

javax.ejb.SessionContext sessionContext

Class com.objectwave.configuration.bean.EjbPropertyLookup.FakeProperty implements Serializable

Class com.objectwave.configuration.bean.JndiPropertyLookup.FakeProperty implements Serializable


Package com.objectwave.event

Class com.objectwave.event.DataAvailable implements Serializable

Serialized Fields

value

java.lang.Object value

Class com.objectwave.event.DataChanged implements Serializable

Serialized Fields

oldValue

java.lang.Object oldValue

newValue

java.lang.Object newValue

Class com.objectwave.event.DataRequest implements Serializable

Serialized Fields

value

java.lang.Object value

Class com.objectwave.event.PacketEvent implements Serializable

Serialized Fields

propertyName

java.lang.String propertyName

propagationID

int propagationID

Class com.objectwave.event.StatusEvent implements Serializable

Serialized Fields

text

java.lang.String text

type

StatusType type


Package com.objectwave.exception

Class com.objectwave.exception.ConfigurationException implements Serializable

Class com.objectwave.exception.DataValidationException implements Serializable

Class com.objectwave.exception.NotFoundException implements Serializable

Class com.objectwave.exception.SystemException implements Serializable

Serialized Fields

rootCause

java.lang.Throwable rootCause


Package com.objectwave.naming.servlet

Class com.objectwave.naming.servlet.StartupServlet implements Serializable


Package com.objectwave.printerSupport

Class com.objectwave.printerSupport.Printer implements Serializable

Serialized Fields

f

java.awt.Frame f

pjob

java.awt.PrintJob pjob

pg

java.awt.Graphics pg

objects

java.util.Vector objects

pt

java.awt.Point pt

fnt

java.awt.Font fnt

tabFont

java.awt.Font tabFont

gp

java.awt.Graphics gp

Class com.objectwave.printerSupport.printing implements Serializable

Serialized Fields

b

java.awt.Button b

show

java.awt.Button show

printer

Printer printer

test

javax.swing.JButton test


Package com.objectwave.uiWidget

Class com.objectwave.uiWidget.BarChart implements Serializable

Serialized Fields

position

int position

increment

int increment

Class com.objectwave.uiWidget.ButtonPanel implements Serializable

Serialized Fields

buttonPanel

javax.swing.JPanel buttonPanel

actions

java.util.Vector actions

Class com.objectwave.uiWidget.ChoiceGui implements Serializable

Serialized Fields

possibleChoices

java.lang.Object[] possibleChoices

selectedChoices

java.lang.Object[] selectedChoices

dlist

DoubleList dlist

pbSave

javax.swing.JButton pbSave

pbClose

javax.swing.JButton pbClose

result

java.lang.Object[] result

Class com.objectwave.uiWidget.ColorSelector implements Serializable

Serialized Fields

top

int top

bottom

int bottom

left

int left

right

int right

colors

java.awt.Color[] colors

selectedColor

java.awt.Color selectedColor

hueMin

int hueMin

brightMin

int brightMin

saturation

int saturation

Class com.objectwave.uiWidget.ComponentList implements Serializable

Serialized Fields

layout

java.awt.GridBagLayout layout

gbc

java.awt.GridBagConstraints gbc

dataPanel

javax.swing.JPanel dataPanel

listData

java.awt.Component[] listData

highlight

boolean highlight

selectionModel

javax.swing.ListSelectionModel selectionModel

selectionListener

javax.swing.event.ListSelectionListener selectionListener

pressed

int pressed

Class com.objectwave.uiWidget.DoubleList implements Serializable

Serialized Fields

left

javax.swing.JList left

right

javax.swing.JList right

controlPanel

DoubleListPanel controlPanel

leftValues

java.lang.Object[] leftValues

rightValues

java.lang.Object[] rightValues

Class com.objectwave.uiWidget.DoubleListPanel implements Serializable

Class com.objectwave.uiWidget.DoubleQuickPick implements Serializable

Serialized Fields

lbMasterList

javax.swing.JList lbMasterList

masterList

java.lang.Object[] masterList

masterSelection

java.lang.Object masterSelection

model

DoublePickIF model

Class com.objectwave.uiWidget.Graph implements Serializable

Serialized Fields

top

int top

bottom

int bottom

left

int left

right

int right

titleHeight

int titleHeight

labelWidth

int labelWidth

fm

java.awt.FontMetrics fm

padding

int padding

title

java.lang.String title

min

int min

max

int max

items

java.util.Vector items

Class com.objectwave.uiWidget.Histogram implements Serializable

Serialized Fields

minValue

int minValue

maxValue

int maxValue

autoRange

boolean autoRange

numTicks

int numTicks

barBase

int barBase

Class com.objectwave.uiWidget.JGraph implements Serializable

Serialized Fields

currColor

int currColor

top

int top

bottom

int bottom

left

int left

right

int right

padding

int padding

recalc

boolean recalc

graphItems

java.util.Vector graphItems

focusedItemValue

javax.swing.JLabel focusedItemValue

selectedItem

GraphItem selectedItem

shadeSelection

boolean shadeSelection

itemListeners

java.util.Vector itemListeners

Class com.objectwave.uiWidget.JLinkLabel implements Serializable

Serialized Fields

url

java.lang.String url

Class com.objectwave.uiWidget.JPanelButton implements Serializable

Serialized Fields

panel

javax.swing.JPanel panel

frame

javax.swing.JFrame frame

autoOpen

boolean autoOpen

Class com.objectwave.uiWidget.JTableTabbing implements Serializable

Class com.objectwave.uiWidget.LineGraph implements Serializable

Serialized Fields

increment

int increment

position

int position

Class com.objectwave.uiWidget.LoginDialog implements Serializable

Serialized Fields

userName

java.lang.String userName

password

java.lang.String password

loginListenerList

LoginDialog.LoginList loginListenerList

pbOk

javax.swing.JButton pbOk

pbCancel

javax.swing.JButton pbCancel

tfUserName

javax.swing.JTextField tfUserName

tfPassword

java.awt.TextField tfPassword

Class com.objectwave.uiWidget.LoginEvent implements Serializable

Serialized Fields

userName

java.lang.String userName

password

java.lang.String password

Class com.objectwave.uiWidget.MessageBox implements Serializable

Serialized Fields

result

boolean result

message

java.lang.String message

title

java.lang.String title

messagePanel

javax.swing.JPanel messagePanel

pbOk

javax.swing.JButton pbOk

pbClose

javax.swing.JButton pbClose

titleFrame

java.awt.Frame titleFrame

taMessage

javax.swing.JTextPane taMessage

Class com.objectwave.uiWidget.MultipleFileSelector implements Serializable

Serialized Fields

initList

java.lang.String[] initList

tfFileName

java.awt.TextField tfFileName

tfCurrentDirectory

java.awt.TextField tfCurrentDirectory

chFileTypes

java.awt.Choice chFileTypes

chDrives

java.awt.Choice chDrives

lbProjectFiles

java.awt.List lbProjectFiles

lbAllFiles

java.awt.List lbAllFiles

lbDirectories

javax.swing.JList lbDirectories

pbAdd

java.awt.Button pbAdd

pbRemove

java.awt.Button pbRemove

pbSelectAll

java.awt.Button pbSelectAll

pbUnselectAll

java.awt.Button pbUnselectAll

pbOk

java.awt.Button pbOk

pbCancel

java.awt.Button pbCancel

fileTypes

java.lang.String[] fileTypes

selection

java.lang.String[] selection

tree

javax.swing.JTree tree

terminateThreadOnClose

boolean terminateThreadOnClose

paintOff

boolean paintOff

Class com.objectwave.uiWidget.PieChart implements Serializable

Serialized Fields

arcX

int arcX

arcY

int arcY

size

int size

center

java.awt.Point center

titleHeight

int titleHeight

fm

java.awt.FontMetrics fm

wedgeLimit

int wedgeLimit

wedgeLimitPercent

double wedgeLimitPercent

title

java.lang.String title

staleDegrees

boolean staleDegrees

itemDegrees

java.util.Vector itemDegrees

labels

java.util.Vector labels

totalValue

int totalValue

displayLabels

boolean displayLabels

Class com.objectwave.uiWidget.QuickPick implements Serializable

Serialized Fields

items

java.lang.Object[] items

selection

java.lang.Object selection

l

javax.swing.JList l

pbOk

javax.swing.JButton pbOk

pbClose

javax.swing.JButton pbClose

mouseListener

java.awt.event.MouseListener mouseListener

Class com.objectwave.uiWidget.SimpleChoiceGui implements Serializable

Serialized Fields

choiceModel

com.objectwave.uiWidget.SimpleChoiceGui.MyListModel choiceModel

chosenModel

com.objectwave.uiWidget.SimpleChoiceGui.MyListModel chosenModel

choiceList

javax.swing.JList choiceList

chosenList

javax.swing.JList chosenList

lhsScroll

javax.swing.JScrollPane lhsScroll

rhsScroll

javax.swing.JScrollPane rhsScroll

addButton

javax.swing.JButton addButton

removeButton

javax.swing.JButton removeButton

addAllButton

javax.swing.JButton addAllButton

removeAllButton

javax.swing.JButton removeAllButton

comparison

SorterComparisonIF comparison

chosenListWasModified

boolean chosenListWasModified

Class com.objectwave.uiWidget.SimpleDateTextField implements Serializable

Serialized Fields

nullText

java.lang.String nullText

invalidText

java.lang.String invalidText

Class com.objectwave.uiWidget.SimpleDoubleTextField implements Serializable

Serialized Fields

invalidText

java.lang.String invalidText

Class com.objectwave.uiWidget.SimpleFontChooser implements Serializable

Serialized Fields

currentFont

java.awt.Font currentFont

selectedFont

java.awt.Font selectedFont

jLabel1

javax.swing.JLabel jLabel1

jComboBox1

javax.swing.JComboBox jComboBox1

chBold

javax.swing.JCheckBox chBold

chItalics

javax.swing.JCheckBox chItalics

jCIntTextField1

javax.swing.JTextField jCIntTextField1

pbPreview

javax.swing.JButton pbPreview

taPreviewArea

javax.swing.JTextArea taPreviewArea

jButton2

javax.swing.JButton jButton2

pbCancel

javax.swing.JButton pbCancel

fComponentsAdjusted

boolean fComponentsAdjusted

Class com.objectwave.uiWidget.SimpleIntTextField implements Serializable

Serialized Fields

invalidText

java.lang.String invalidText

Class com.objectwave.uiWidget.SimpleOkCancelDialog implements Serializable

Serialized Fields

buttonPanel

javax.swing.JPanel buttonPanel

okButton

javax.swing.JButton okButton

cancelButton

javax.swing.JButton cancelButton

component

java.awt.Component component

cancelled

boolean cancelled

Class com.objectwave.uiWidget.StateCheckBox implements Serializable

Serialized Fields

actionCommand

java.lang.String actionCommand

original

java.awt.Color original

tf

StateTextField tf

label

javax.swing.JLabel label

Class com.objectwave.uiWidget.StateTextField implements Serializable

Serialized Fields

states

java.lang.String[] states

state

int state

Class com.objectwave.uiWidget.StatusBar implements Serializable

Serialized Fields

timer

java.lang.Thread timer

messageDisplayTime

int messageDisplayTime

informationalColor

java.awt.Color informationalColor

errorColor

java.awt.Color errorColor

warningColor

java.awt.Color warningColor

Class com.objectwave.uiWidget.VariablePanel implements Serializable

Serialized Fields

result

java.lang.String result

border

javax.swing.border.TitledBorder border

tfEntry

javax.swing.JTextField tfEntry

lbContents

javax.swing.JList lbContents

entries

java.util.Vector entries

listData

java.lang.String[] listData

duplicatesAllowed

boolean duplicatesAllowed


Package com.objectwave.utility

Class com.objectwave.utility.CombinatoricException implements Serializable

Class com.objectwave.utility.DisplayPair implements Serializable

Class com.objectwave.utility.NonUniqueHashtable implements Serializable

Class com.objectwave.utility.Pair implements Serializable

Serialized Fields

first

java.lang.Object first

second

java.lang.Object second

Class com.objectwave.utility.SymbolExpanderTableModel implements Serializable

Serialized Fields

columnLabels

java.lang.String[] columnLabels

expander

SymbolExpander expander

newValue

java.lang.String newValue

Class com.objectwave.utility.TreeCollection implements Serializable

Serialized Fields

root

java.util.Vector root

allNodes

java.util.Hashtable allNodes

parents

java.util.Hashtable parents

eventList

javax.swing.event.EventListenerList eventList

name

java.lang.String name


Package com.objectwave.viewUtility

Class com.objectwave.viewUtility.HeaderFooterSelection implements Serializable

Serialized Fields

owner

java.awt.Frame owner

useHeader

javax.swing.JCheckBox useHeader

useFooter

javax.swing.JCheckBox useFooter

headerText

javax.swing.JTextField headerText

footerText

javax.swing.JTextField footerText

headerBrowse

javax.swing.JButton headerBrowse

footerBrowse

javax.swing.JButton footerBrowse

okButton

javax.swing.JButton okButton

cancelButton

javax.swing.JButton cancelButton

cancelled

boolean cancelled

Class com.objectwave.viewUtility.PropertyDialog implements Serializable

Serialized Fields

pbOk

javax.swing.JButton pbOk

pbCancel

javax.swing.JButton pbCancel

pbApply

javax.swing.JButton pbApply

tabbedPane

javax.swing.JTabbedPane tabbedPane

panels

PropertyPanel[] panels

Class com.objectwave.viewUtility.PropertyPanelAdapter implements Serializable

Serialized Fields

tab

java.lang.String tab

rendered

boolean rendered

changed

boolean changed

changes

javax.swing.event.EventListenerList changes

Class com.objectwave.viewUtility.ResizableGridBagLayout implements Serializable

Serialized Fields

initDrag

java.awt.Point initDrag

arrCount

int arrCount


Package com.objectwave.appArch

Class com.objectwave.appArch.ConfigurationProperties implements Serializable


Package com.objectwave.socketClassServer

Class com.objectwave.socketClassServer.ObjectServerData implements Serializable

Serialized Fields

host

java.net.InetAddress host

port

int port

requestClassName

java.lang.String requestClassName


Package com.objectwave.sourceGenerator

Class com.objectwave.sourceGenerator.ClassInformation implements Serializable

Serialized Fields

classElement

JavaClassDef classElement

packageName

PackageDef packageName

imports

PackageDef[] imports

mainClass

ClassSpec mainClass

idx

int idx

miscData

java.lang.String miscData

Class com.objectwave.sourceGenerator.SourceCodeGenerator implements Serializable


Package com.objectwave.sourceParser

Class com.objectwave.sourceParser.SourceCodeReader implements Serializable


Package com.objectwave.templateMerge

Class com.objectwave.templateMerge.InformationToken implements Serializable

Serialized Fields

tokenString

java.lang.String tokenString

description

java.lang.String description

info

InformationRetrieval info

collection

boolean collection

iterate

boolean iterate

tree

boolean tree

Class com.objectwave.templateMerge.KnownTemplates implements Serializable

Serialized Fields

list

java.util.Hashtable list

assignedList

java.util.Hashtable assignedList

names

java.util.Vector names

fileName

java.lang.String fileName

eventList

java.beans.PropertyChangeSupport eventList

Class com.objectwave.templateMerge.MergeTemplate implements Serializable

Serialized Fields

templates

MergeTemplate[] templates

templateName

java.lang.String templateName

preWriteBody

java.lang.String preWriteBody

postWriteBody

java.lang.String postWriteBody

preTokens

InformationToken[] preTokens

postTokens

InformationToken[] postTokens

preTagTable

TagTable preTagTable

postTagTable

TagTable postTagTable

preFormattedBody

java.lang.String preFormattedBody

postFormattedBody

java.lang.String postFormattedBody

Class com.objectwave.templateMerge.TokenTableModel implements Serializable

Serialized Fields

testValues

java.util.Vector testValues


Package com.objectwave.templateMerge.gui

Class com.objectwave.templateMerge.gui.TemplateGui implements Serializable

Serialized Fields

behavior

TemplateGuiVIF behavior

tvTemplates

javax.swing.JTree tvTemplates

taTemplate

javax.swing.JTextArea taTemplate

file

javax.swing.JMenu file

template

javax.swing.JMenu template

view

javax.swing.JMenu view

pbNew

javax.swing.JMenuItem pbNew

pbSave

javax.swing.JMenuItem pbSave

pbLoad

javax.swing.JMenuItem pbLoad

pbDump

javax.swing.JMenuItem pbDump

pbImport

javax.swing.JMenuItem pbImport

pbDeleteTemplate

javax.swing.JMenuItem pbDeleteTemplate

pbEditTemplate

javax.swing.JMenuItem pbEditTemplate

pbNewTemplate

javax.swing.JMenuItem pbNewTemplate

pbTestTemplate

javax.swing.JMenuItem pbTestTemplate

cbFullView

javax.swing.JCheckBoxMenuItem cbFullView

shutDown

boolean shutDown

Class com.objectwave.templateMerge.gui.TemplateModGui implements Serializable

Serialized Fields

pbSave

java.awt.Button pbSave

pbClose

java.awt.Button pbClose

pbSelectFillins

java.awt.Button pbSelectFillins

pbSelectTemplates

java.awt.Button pbSelectTemplates

activeTemplate

MergeTemplate activeTemplate

taBodyText

java.awt.TextArea taBodyText

tfTemplateName

java.awt.TextField tfTemplateName

cbGroup

java.awt.CheckboxGroup cbGroup

cbPreData

java.awt.Checkbox cbPreData

cbPostData

java.awt.Checkbox cbPostData

lbFillins

ListControl lbFillins

lbTemplates

ListControl lbTemplates

allTemplates

KnownTemplates allTemplates

tokenProvider

TokenProvider tokenProvider


Package com.objectwave.tools

Class com.objectwave.tools.JavaDocSearchPanel implements Serializable

Serialized Fields

t

java.lang.Thread t

ivjcbEqualsOne

javax.swing.JCheckBox ivjcbEqualsOne

ivjcbEqualsOne1

javax.swing.JCheckBox ivjcbEqualsOne1

ivjcbEqualsOne2

javax.swing.JCheckBox ivjcbEqualsOne2

ivjcbEqualsOne3

javax.swing.JCheckBox ivjcbEqualsOne3

ivjcbExistanceOne

javax.swing.JCheckBox ivjcbExistanceOne

ivjcbExistanceOne1

javax.swing.JCheckBox ivjcbExistanceOne1

ivjcbExistanceOne2

javax.swing.JCheckBox ivjcbExistanceOne2

ivjcbExistanceOne3

javax.swing.JCheckBox ivjcbExistanceOne3

ivjJLabel1

javax.swing.JLabel ivjJLabel1

ivjequalsOne

javax.swing.JTextField ivjequalsOne

ivjequalsOne1

javax.swing.JTextField ivjequalsOne1

ivjequalsOne2

javax.swing.JTextField ivjequalsOne2

ivjequalsOne3

javax.swing.JTextField ivjequalsOne3

ivjtagOne

javax.swing.JTextField ivjtagOne

ivjtagOne1

javax.swing.JTextField ivjtagOne1

ivjtagOne2

javax.swing.JTextField ivjtagOne2

ivjtagOne3

javax.swing.JTextField ivjtagOne3

ivjMainPanel

javax.swing.JPanel ivjMainPanel

ivjDocSearch

DocSearchIF ivjDocSearch

Class com.objectwave.tools.SearchFrame implements Serializable

Serialized Fields

ivjJFrameContentPane

javax.swing.JPanel ivjJFrameContentPane

ivjStatusBar

StatusBar ivjStatusBar

ivjStatusManager

StatusManager ivjStatusManager

ivjJavaDocSearchPanel1

JavaDocSearchPanel ivjJavaDocSearchPanel1

ivjJPanel1

javax.swing.JPanel ivjJPanel1

ivjJPanel2

javax.swing.JPanel ivjJPanel2

ivjJPanel1BorderLayout

java.awt.BorderLayout ivjJPanel1BorderLayout

ivjJPanel2GridLayout

java.awt.GridLayout ivjJPanel2GridLayout

ivjpbCancelSearch

javax.swing.JButton ivjpbCancelSearch

ivjpbClose

javax.swing.JButton ivjpbClose

ivjpbSearch

javax.swing.JButton ivjpbSearch

ivjDocSearch

DocSearchIF ivjDocSearch

ivjConnPtoP1Aligning

boolean ivjConnPtoP1Aligning

Class com.objectwave.tools.SearchResults implements Serializable

Serialized Fields

ivjJFrameContentPane

javax.swing.JPanel ivjJFrameContentPane

ivjJScrollPane1

javax.swing.JScrollPane ivjJScrollPane1

ivjJSplitPane1

javax.swing.JSplitPane ivjJSplitPane1

ivjJTextArea1

javax.swing.JTextArea ivjJTextArea1

ivjJTree1

javax.swing.JTree ivjJTree1

ivjTreeModel

javax.swing.tree.TreeModel ivjTreeModel

ivjDocSearch

DocSearchIF ivjDocSearch


Package com.objectwave.tools.propertyEditor

Class com.objectwave.tools.propertyEditor.AbstractLayout implements Serializable

Serialized Fields

hgap

int hgap

vgap

int vgap

Class com.objectwave.tools.propertyEditor.ConfigureTreeModel implements Serializable

Class com.objectwave.tools.propertyEditor.ConfigureTreeNode implements Serializable

Class com.objectwave.tools.propertyEditor.DeckLayout implements Serializable

Serialized Fields

tab

java.util.Hashtable tab

count

int count

wrap

boolean wrap

Class com.objectwave.tools.propertyEditor.FieldLayout implements Serializable

Class com.objectwave.tools.propertyEditor.FieldLayoutTest implements Serializable

Class com.objectwave.tools.propertyEditor.FieldPanel implements Serializable

Serialized Fields

path

java.lang.String path

Class com.objectwave.tools.propertyEditor.JConfigure implements Serializable

Serialized Fields

tree

javax.swing.JTree tree

title

javax.swing.JLabel title

deck

javax.swing.JPanel deck

filename

java.lang.String filename

layout

DeckLayout layout

decks

java.util.Hashtable decks

model

ConfigureTreeModel model

template

java.util.Properties template

originalProperties

java.util.Properties originalProperties

listOfValues

java.util.Vector listOfValues

splitPane

javax.swing.JSplitPane splitPane

sourceProperties

java.util.Properties sourceProperties

selectionPopup

PopupMenu selectionPopup

focusListener

java.awt.event.FocusListener focusListener

showTree

boolean showTree

Class com.objectwave.tools.propertyEditor.JConfigureTest implements Serializable

Serialized Fields

ok

javax.swing.JButton ok

cancel

javax.swing.JButton cancel

configure

JConfigure configure

Class com.objectwave.tools.propertyEditor.PropertyBooleanField implements Serializable

Class com.objectwave.tools.propertyEditor.PropertyFieldBaseImpl implements Serializable

Serialized Fields

changeSupport

java.beans.PropertyChangeSupport changeSupport

Class com.objectwave.tools.propertyEditor.PropertyFileField implements Serializable

Serialized Fields

oldValue

java.lang.String oldValue

pbFindFile

javax.swing.JButton pbFindFile

tfFileName

javax.swing.JTextField tfFileName

Class com.objectwave.tools.propertyEditor.PropertyListField implements Serializable

Serialized Fields

oldValue

java.lang.Object oldValue

Class com.objectwave.tools.propertyEditor.PropertyPathField implements Serializable

Serialized Fields

data

javax.swing.JList data

tfFileName

java.awt.TextField tfFileName

Class com.objectwave.tools.propertyEditor.PropertyRectangleField implements Serializable

Serialized Fields

left

javax.swing.JTextField left

top

javax.swing.JTextField top

width

javax.swing.JTextField width

height

javax.swing.JTextField height

Class com.objectwave.tools.propertyEditor.PropertyTextField implements Serializable

Serialized Fields

oldValue

java.lang.String oldValue

Class com.objectwave.tools.propertyEditor.TitleBar implements Serializable


Package com.objectwave.tools.uiWidget

Class com.objectwave.tools.uiWidget.PropertyWizard implements Serializable

Serialized Fields

actions

javax.swing.AbstractAction[] actions

BACK

int BACK

NEXT

int NEXT

FINISHED

int FINISHED

CANCEL

int CANCEL

HELP

int HELP

currentPage

java.lang.String currentPage

back

java.util.Stack back

focusListener

java.awt.event.FocusListener focusListener

layout

DeckLayout layout

decks

java.util.Hashtable decks

deckRequired

java.util.Hashtable deckRequired

deck

javax.swing.JPanel deck

sourceProperties

java.util.Properties sourceProperties

resultProperties

java.util.Properties resultProperties

Class com.objectwave.tools.uiWidget.SelectData implements Serializable

Serialized Fields

componentList2

javax.swing.JPanel componentList2

items

javax.swing.JCheckBox[] items

tfOthers

javax.swing.JTextField tfOthers

list

FileList list


Package com.objectwave.tools.viewUtility

Class com.objectwave.tools.viewUtility.GenericTableModel implements Serializable

Serialized Fields

columns

GenericTableModel.Column[] columns

data

java.util.Vector data

totals

java.lang.Object[] totals

hasTotalsRow

boolean hasTotalsRow