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