jSyncManager

Serialized Form


Package org.jSyncManager.API.Conduit

Class org.jSyncManager.API.Conduit.AbstractConduit implements Serializable

Class org.jSyncManager.API.Conduit.AbstractInstaller implements Serializable

Class org.jSyncManager.API.Conduit.ConduitHandlerException implements Serializable

Serialized Fields

dlpException

DLPFunctionCallException dlpException

Class org.jSyncManager.API.Conduit.ConduitNotFoundException implements Serializable

Class org.jSyncManager.API.Conduit.DatabaseNotFoundException implements Serializable


Package org.jSyncManager.API.Protocol

Class org.jSyncManager.API.Protocol.CMP_Packet implements Serializable

Serialized Fields

packetType

byte packetType
A field to contain the packet type value.
See Also:
CMP_Packet.CMP_WAKEUP, CMP_Packet.CMP_INIT, CMP_Packet.CMP_ABORT, CMP_Packet.CMP_EXTENDED

flags

byte flags
A field to contain the packet flags.
See Also:
CMP_Packet.CHANGE_BAUD_RATE, CMP_Packet.ONE_MINUTE_TIMEOUT, CMP_Packet.TWO_MINUTE_TIMEOUT

majorVersion

byte majorVersion
The major revision of the CMP protocol in use.

minorVersion

byte minorVersion
The minor revision of the CMP protocol in use.

baudRate

int baudRate
The baud rate to use for serial communication. The default is 9600bps.

Class org.jSyncManager.API.Protocol.DLP_Packet implements Serializable

Serialized Fields

packet

org.jSyncManager.API.Protocol.DLP_Packet.DLPHeader packet
The actual packet this object represents. There are several different formats for DLP packets, all of which are represented internally through inner objects. The DLP_Packet class provides a single external access mechanism for handling these different formats, so application developers don't have to care about all the different types.

hostSocket

byte hostSocket
The socket being used by the host system for data I/O. This is typically set to 3, the Desktop Socket.

serverSocket

byte serverSocket
The socket being used by the server (the handheld) for data I/O. This is typically set to 3, the Desktop Socket.

Class org.jSyncManager.API.Protocol.DLPError implements Serializable

Serialized Fields

pkt

DLP_Packet pkt
The DLP_Packet that generated this exception.

Class org.jSyncManager.API.Protocol.DLPFunctionCallException implements Serializable

Serialized Fields

errorCode

int errorCode
The error code associated with this function call exception.

Class org.jSyncManager.API.Protocol.GenericPacket implements Serializable

Serialized Fields

data

byte[] data
A byte array containing the packet data

source

byte source
The source socket for this packet.

destination

byte destination
The destination socket for this packet.

transactionID

byte transactionID
The transaction ID for this packet.

Class org.jSyncManager.API.Protocol.NotConnectedException implements Serializable

Class org.jSyncManager.API.Protocol.PADP_Packet implements Serializable

Serialized Fields

packetType

byte packetType
A field to hold the packet type for this packet.

flags

byte flags
A field to hold the flags for this packet.

packetSize

char packetSize
A field to hold the size of this packet.

data

byte[] data
A field to hold the data encapsulated within this packet.

destinationSocket

byte destinationSocket
A field to hold the destination socket for this packet. Note that this field isn't actually a part of the packet itself. This data is transmitted as a part of the SLP packet. However, it may be needed at various levels of the protocol stack, and is thus included here as a way of propogating it between protocols.

sourceSocket

byte sourceSocket
A field to hold the source socket for this packet. Note that this field isn't actually a part of the packet itself. This data is transmitted as a part of the SLP packet. However, it may be needed at various levels of the protocol stack, and is thus included here as a way of propogating it between protocols.

transactionID

byte transactionID
A field to hold the transaction ID for this packet. Note that this field isn't actually a part of the packet itself. This data is transmitted as a part of the SLP packet. However, it may be needed at various levels of the protocol stack, and is thus included here as a way of propogating it between protocols.

sent

boolean sent
A field to denote wether or not this packet has been sent. This field is set to true if this packet has been transmitted, false otherwise.

Class org.jSyncManager.API.Protocol.PADP_PacketTooBigException implements Serializable

Class org.jSyncManager.API.Protocol.PADP_QueueOverrunException implements Serializable

Class org.jSyncManager.API.Protocol.PADPFragmentSet implements Serializable

Serialized Fields

packets

PADP_Packet[] packets
An array to hold a series of PADP_Packets containing fragments that represent a single packet. This array is constructed to hold up to 64 PADP_Packet objects, the maximum possible.

fragmentPtr

int fragmentPtr
A field to store the packet fragment pointer.

size

int size
The total size of the packet.

bytesReceived

int bytesReceived
The total number of bytes received thus far.

Class org.jSyncManager.API.Protocol.SLP_Packet implements Serializable

Serialized Fields

destinationSocket

byte destinationSocket
A field to hold the destination socket.

sourceSocket

byte sourceSocket
A field to hold the source socket.

packetType

byte packetType
A field to hold the packet type.

bodySize

char bodySize
A field to hold the size of tha encapsulated data packet.

transactionID

byte transactionID
A field to hold the packet transaction ID number.

checksum

byte checksum
A field to hold the packet header checksum. The packet header has a checksum in it to help ensure that the header data was received correctly before attempting to read the data portion of the packet. This checksum includes the preamble, the destination socket, source socket, packet type, body size, and the transaction ID.

data

byte[] data
A fiold to hold the encapsulated packet data.

CRC

char CRC
A field to hold the packet CRC value. The packet CRC value is calculated using every byte of data from the packet preamble up to, but not including, the CRC value itself.

Class org.jSyncManager.API.Protocol.SLP_QueueOverrunException implements Serializable

Class org.jSyncManager.API.Protocol.USB_Packet implements Serializable

Serialized Fields

packetType

byte packetType
The packet type of the USB packet.
See Also:
USB_Packet.DATA, USB_Packet.ACK, USB_Packet.NACK, USB_Packet.TICKLE, USB_Packet.ABORT

transactionID

byte transactionID
This packets transaction ID.

packetSize

int packetSize
The size of this packet, in bytes.

data

byte[] data
A byte array to hold this packets data portion.

sent

boolean sent
A flag to denote wether or not this packet has been sent to the remote end.


Package org.jSyncManager.API.Protocol.Util

Class org.jSyncManager.API.Protocol.Util.DatabaseFormatException implements Serializable

Class org.jSyncManager.API.Protocol.Util.DLP_Date implements Serializable

Serialized Fields

year

char year
The year this date represents.

month

byte month
The month this date represents.

day

byte day
The day this date represents.

hour

byte hour
The hour this date represents.

minute

byte minute
The minute this date represents.

second

byte second
The second this date represents.

Class org.jSyncManager.API.Protocol.Util.DLPBlock implements Serializable

Serialized Fields

blockSize

int blockSize
Holds the size of the block.

data

byte[] data
Holds the data array representing this block.

Class org.jSyncManager.API.Protocol.Util.DLPCardInfo implements Serializable

Serialized Fields

cardNumber

int cardNumber
A field to store the card number.

cardVersion

int cardVersion
A field to store the card version.

creationTime

DLP_Date creationTime
A field to store the cards creation (manufacturing) time.

romSize

int romSize
A field to store the amount of ROM on the card.

ramSize

int ramSize
A field to store the amount of RAM on the card.

freeRam

int freeRam
A field to store the amount of free RAM on the card.

cardName

java.lang.String cardName
A field to store the name of the card.

cardManufacturer

java.lang.String cardManufacturer
A field to store the name of the cards manufacturer.

Class org.jSyncManager.API.Protocol.Util.DLPDatabase implements Serializable

Serialized Fields

isResourceDB

boolean isResourceDB

data

java.util.Vector data

databaseInfo

DLPDatabaseInfo databaseInfo

applicationBlock

DLPBlock applicationBlock

sortBlock

DLPBlock sortBlock

Class org.jSyncManager.API.Protocol.Util.DLPDatabaseInfo implements Serializable

Serialized Fields

miscFlags

byte miscFlags

databaseFlags

char databaseFlags

type

int type

creator

int creator

version

int version

modificationNumber

int modificationNumber

creationTime

DLP_Date creationTime

backupTime

DLP_Date backupTime

modificationTime

DLP_Date modificationTime

name

java.lang.String name

databaseIndex

char databaseIndex

Class org.jSyncManager.API.Protocol.Util.DLPRecord implements Serializable

Serialized Fields

inputData

byte[] inputData
A byte array to hold the input data array.

recordID

int recordID
A field to store this records unique ID number.

index

char index
A field to store this records index within its database.

recordSize

char recordSize
A field to store the size of this record.

attributes

byte attributes
A field to store this records attributes bitmap.

category

byte category
A field to store this records category ID.

data

byte[] data
A field to store this records data array.

Class org.jSyncManager.API.Protocol.Util.DLPRecordXML implements Serializable

Serialized Fields

record

DLPRecord record

Class org.jSyncManager.API.Protocol.Util.DLPResource implements Serializable

Serialized Fields

resourceType

int resourceType
A field to hold the resource type value.

resourceID

char resourceID
A field to hold the resource ID for this resource.

index

char index
A field to hold the index value for this resource.

resourceSize

char resourceSize
A field to store the size of this resource.

data

byte[] data
A field to store the data contained within this resource.

Class org.jSyncManager.API.Protocol.Util.DLPStorageInfo implements Serializable

Serialized Fields

numCards

int numCards
A field to store the number of cards present on the system.

hasMoreCards

boolean hasMoreCards
A flag te denote wether or not the handheld has more cards. This is set to true if there are more cards present, false otherwise.

cards

DLPCardInfo[] cards
The Card Info objects for all available cards on the system.

romDataBaseCount

int romDataBaseCount
The number of ROM databases present on the system.

ramDatabaseCount

int ramDatabaseCount
The number of RAM databases present on the system.

extResponse

boolean extResponse
A flag denoting wether or not an extended responce was detected. This is set automatically to true if extended information was received, false otherwise.

Class org.jSyncManager.API.Protocol.Util.DLPSystemInfo implements Serializable

Serialized Fields

romVersion

int romVersion
The ROM version of the device.

localeID

int localeID
The locale ID of the handheld device.

prodIDSize

byte prodIDSize
The product ID size of the handheld.

productID

int productID
The product ID of the handheld.

dlpVersion

DLPVersion dlpVersion
The DLP Version to report to the handheld. Default is v1.3.

compatibilityVersion

DLPVersion compatibilityVersion
The compatibility version to report to the handheld. Default is 1.0.

maxRecordSize

int maxRecordSize
The maximum size of a record.

extInfo

boolean extInfo
A flag to denote wether or not extended info was reported. This is set to true if extended info was reported, false otherwise.

Class org.jSyncManager.API.Protocol.Util.DLPUserInfo implements Serializable

Serialized Fields

userID

int userID
The user ID for the handheld user.

viewerID

int viewerID
The viewer ID for the handheld.

lastSyncHostID

int lastSyncHostID
The last HotSync host ID for the handheld.

lastGoodSync

java.util.Calendar lastGoodSync
The date/time of the last good (completed) synchronization operation.

lastSync

java.util.Calendar lastSync
The date/time of the last synchronization attempt.

userName

java.lang.String userName
The name of the handheld user.

password

byte[] password
The encrypted password for the handheld user.

uidChanged

boolean uidChanged
A flag denoting wether or not the user ID has been changed. This is set to true if the user ID has been changed, false otherwise.

vidChanged

boolean vidChanged
A flag denoting wether or not the viewer ID has been changed. This is set to true if the viewer ID has been changed, false otherwise.

lastPCIDChanged

boolean lastPCIDChanged
A flag denoting wether or not the last PC sync ID has been changed. This is set to true if the last PC sync ID has been changed, false otherwise.

uNameChanged

boolean uNameChanged
A flag denoting wether or not the user name has been changed. This is set to true if the user name has been changed, false otherwise.

lastSyncDateChanged

boolean lastSyncDateChanged
A flag denoting wether or not the last sync date has been changed. This is set to true if the last sync date has been changed, false otherwise.

Class org.jSyncManager.API.Protocol.Util.DLPVersion implements Serializable

Serialized Fields

majorVersion

int majorVersion
The major version.

minorVersion

int minorVersion
The minor version.

Class org.jSyncManager.API.Protocol.Util.EncryptionNotSupportedException implements Serializable

Class org.jSyncManager.API.Protocol.Util.InvalidDLPDateException implements Serializable

Class org.jSyncManager.API.Protocol.Util.JSCSVCell implements Serializable

Serialized Fields

value

java.lang.String value

type

int type

Class org.jSyncManager.API.Protocol.Util.JSXMLDate implements Serializable

Serialized Fields

date

java.util.Calendar date

Class org.jSyncManager.API.Protocol.Util.JSXMLDocument implements Serializable

Class org.jSyncManager.API.Protocol.Util.JSXMLElement implements Serializable


Package org.jSyncManager.API.Protocol.Util.StdApps

Class org.jSyncManager.API.Protocol.Util.StdApps.AddressAppBlock implements Serializable

Serialized Fields

categories

CategoryInfo[] categories

modifiedFieldLabelBitmap

int modifiedFieldLabelBitmap

fieldLabels

java.lang.String[] fieldLabels

countryCode

byte countryCode

viewByCompany

boolean viewByCompany

lastUniqueID

byte lastUniqueID

numCategories

int numCategories

Class org.jSyncManager.API.Protocol.Util.StdApps.AddressDBXML implements Serializable

Serialized Fields

record

AddressRecord record

Class org.jSyncManager.API.Protocol.Util.StdApps.AddressRecord implements Serializable

Serialized Fields

surname

java.lang.String surname

givenName

java.lang.String givenName

title

java.lang.String title

company

java.lang.String company

phones

java.lang.String[] phones

address

java.lang.String address

city

java.lang.String city

province

java.lang.String province

postalCode

java.lang.String postalCode

country

java.lang.String country

customFields

java.lang.String[] customFields

note

java.lang.String note

dataFlags

boolean[] dataFlags

contentFlags

int contentFlags

displayForList

int displayForList

phoneFieldOrders

int[] phoneFieldOrders

Class org.jSyncManager.API.Protocol.Util.StdApps.DateBookAppBlock implements Serializable

Serialized Fields

categories

CategoryInfo[] categories
An array to hold category information.

lastUniqueID

byte lastUniqueID
The last unique ID in use.

numCategories

int numCategories
The number of categories in this database.

startOfWeek

byte startOfWeek
The day that the user considers the start of the week.

Class org.jSyncManager.API.Protocol.Util.StdApps.DateBookDBXML implements Serializable

Serialized Fields

record

DateBookRecord record

dbentry

DateBookRecordEntry dbentry

Class org.jSyncManager.API.Protocol.Util.StdApps.DateBookRecord implements Serializable

Serialized Fields

note

java.lang.String note

description

java.lang.String description

firstEntry

DateBookRecordEntry firstEntry

lastEntry

DateBookRecordEntry lastEntry

Class org.jSyncManager.API.Protocol.Util.StdApps.DateBookRecordEntry implements Serializable

Serialized Fields

startTime

java.util.Calendar startTime

endTime

java.util.Calendar endTime

alarmTime

java.util.Calendar alarmTime

apptFlags

byte apptFlags
Used to store the appointment flags.

alarmAdvance

byte alarmAdvance
Alarm advance (-1 = no alarm)

alarmUnitType

byte alarmUnitType
minutes, hours, days from REPEATTYPE_

repeatType

byte repeatType
repeatType; daily, weekly, monthlyByDay, etc.

repeatEndDate

java.util.Calendar repeatEndDate
repeatEndDate; minus one if forever

repeatFrequency

byte repeatFrequency
repeatFrequency; Frequency of repeat, i.e. every 2 days if repeatType daily

repeatOn

byte repeatOn
repeatOn; monthlyByDay and repeatWeekly only

repeatStartOfWeek

byte repeatStartOfWeek
repeatStartOfWeek; repeatWeekly only

exceptionArray

java.util.Vector exceptionArray
Used to hold exception information for this record.

Class org.jSyncManager.API.Protocol.Util.StdApps.ExpenseAppBlock implements Serializable

Serialized Fields

categories

CategoryInfo[] categories

lastUniqueID

byte lastUniqueID

sortOrder

byte sortOrder

currencies

ExpenseAppBlock.CurrencyInfo[] currencies

numCategories

int numCategories

Class org.jSyncManager.API.Protocol.Util.StdApps.ExpenseDBXML implements Serializable

Serialized Fields

record

ExpenseRecord record

Class org.jSyncManager.API.Protocol.Util.StdApps.ExpenseRecord implements Serializable

Serialized Fields

expenseDate

java.util.Calendar expenseDate

expenseType

byte expenseType

paymentType

byte paymentType

currencyType

byte currencyType

expenseAmount

java.lang.String expenseAmount

expenseVendor

java.lang.String expenseVendor

expenseCity

java.lang.String expenseCity

expenseAttendees

java.lang.String expenseAttendees

expenseNote

java.lang.String expenseNote

Class org.jSyncManager.API.Protocol.Util.StdApps.MailAppBlock implements Serializable

Serialized Fields

categories

CategoryInfo[] categories

lastUniqueID

byte lastUniqueID

dirtyAppInfo

char dirtyAppInfo

sortOrder

byte sortOrder

unsentMessage

long unsentMessage

signatureOffset

char signatureOffset

numCategories

int numCategories

Class org.jSyncManager.API.Protocol.Util.StdApps.MailDBXML implements Serializable

Serialized Fields

record

MailRecord record

Class org.jSyncManager.API.Protocol.Util.StdApps.MailRecord implements Serializable

Serialized Fields

messageTime

java.util.Calendar messageTime

flags

byte flags

subject

java.lang.String subject

from

java.lang.String from

to

java.lang.String to

cc

java.lang.String cc

bcc

java.lang.String bcc

replyTo

java.lang.String replyTo

sentTo

java.lang.String sentTo

body

java.lang.String body

Class org.jSyncManager.API.Protocol.Util.StdApps.MemoAppBlock implements Serializable

Serialized Fields

categories

CategoryInfo[] categories
An array of Category objects associated with this database app block.

lastUniqueID

byte lastUniqueID
The last unique ID used in this database.

sortOrder

byte sortOrder
The sort order to apply to this database.
See Also:
MemoAppBlock.UNSORTED, MemoAppBlock.ALPHA_ORDER

numCategories

int numCategories
The number of categories retreived.

Class org.jSyncManager.API.Protocol.Util.StdApps.MemoDBXML implements Serializable

Serialized Fields

record

MemoRecord record

Class org.jSyncManager.API.Protocol.Util.StdApps.MemoRecord implements Serializable

Serialized Fields

memoText

java.lang.String memoText
A string to hold the text of the memo.

Class org.jSyncManager.API.Protocol.Util.StdApps.NotepadAppBlock implements Serializable

Serialized Fields

categories

CategoryInfo[] categories
The Category objects associated with this database.

lastUniqueID

byte lastUniqueID
The last unique ID used in this database.

sortOrder

byte sortOrder
The sort order used for the records in this database.
See Also:
NotepadAppBlock.UNSORTED, NotepadAppBlock.ALPHA_ORDER

numCategories

int numCategories
The number of categories defined in this application block.

Class org.jSyncManager.API.Protocol.Util.StdApps.NotepadRecord implements Serializable

Serialized Fields

creationTime

java.util.Calendar creationTime

modificationTime

java.util.Calendar modificationTime

alarmTime

java.util.Calendar alarmTime

flags

char flags

title

java.lang.String title

width

int width

height

int height

bodyLength

int bodyLength

l1

int l1

l2

int l2

dataLength

int dataLength

recordSet

NotepadRecord.NotepadDataRecord[] recordSet

Class org.jSyncManager.API.Protocol.Util.StdApps.ToDoListAppBlock implements Serializable

Serialized Fields

categories

CategoryInfo[] categories

lastUniqueID

byte lastUniqueID

dirtyAppInfo

int dirtyAppInfo

sortOrder

byte sortOrder

numCategories

int numCategories

Class org.jSyncManager.API.Protocol.Util.StdApps.ToDoListDBXML implements Serializable

Serialized Fields

record

ToDoListRecord record

Class org.jSyncManager.API.Protocol.Util.StdApps.ToDoListRecord implements Serializable

Serialized Fields

dueDate

java.util.Calendar dueDate

priority

byte priority

description

java.lang.String description

note

java.lang.String note

dueDateFlag

boolean dueDateFlag


Package org.jSyncManager.API.Transport

Class org.jSyncManager.API.Transport.SerialTransportInterface implements Serializable

Serialized Fields

serialSpeed

int serialSpeed
The desired maximum connection rate selected by the user.

Class org.jSyncManager.API.Transport.SLPTransportInterface implements Serializable

Class org.jSyncManager.API.Transport.TransportException implements Serializable

Serialized Fields

ex

java.lang.Throwable ex
Used to store the exception that generated this exception, if any.

reason

byte reason
Used to store the exception reason code.

Class org.jSyncManager.API.Transport.USBTransportInterface implements Serializable


Package org.jSyncManager.Client

Class org.jSyncManager.Client.AboutDialog implements Serializable

Serialized Fields

LOGO_LARGE

java.lang.String LOGO_LARGE

Class org.jSyncManager.Client.AbstractSettingsPanel implements Serializable

Serialized Fields

pluginSettingsHashMap

java.util.HashMap pluginSettingsHashMap

previousSelectedPlugin

java.lang.Object previousSelectedPlugin

pluginSettingsPanel

javax.swing.JPanel pluginSettingsPanel

pluginSelectionPanel

javax.swing.JPanel pluginSelectionPanel

pluginDescription

javax.swing.JEditorPane pluginDescription

pluginDescriptionComponent

javax.swing.JComponent pluginDescriptionComponent

preferences

RegistrationData preferences

Class org.jSyncManager.Client.ApplicationJFrame implements Serializable

Serialized Fields

log

java.io.PrintWriter log

defConduit

DefaultConduit defConduit

menuBar

ApplicationJMenuBar menuBar

syncEngine

Synchronizer syncEngine

syncThread

java.lang.Thread syncThread

prefs

RegistrationData prefs

statusdlg

StatusDialog statusdlg

statusStream

java.io.PrintWriter statusStream

restoreDlg

RestoreDialog restoreDlg

Class org.jSyncManager.Client.ApplicationJMenuBar implements Serializable

Serialized Fields

parentFrame

ApplicationJFrame parentFrame

settingsDialog

SettingsDialog settingsDialog

preferences

RegistrationData preferences

onSyncOptionsGroup

javax.swing.ButtonGroup onSyncOptionsGroup

logFrame

LogJFrame logFrame

synchronize

javax.swing.JMenuItem synchronize

backup

javax.swing.JMenuItem backup

restore

javax.swing.JMenuItem restore

file

javax.swing.JMenu file

settings

javax.swing.JMenu settings

help

javax.swing.JMenu help

log

javax.swing.JMenuItem log

quit

javax.swing.JMenuItem quit

connection

javax.swing.JMenuItem connection

jConduits

javax.swing.JMenuItem jConduits

preferencesMenuItem

javax.swing.JMenuItem preferencesMenuItem

helpTopics

javax.swing.JMenuItem helpTopics

about

javax.swing.JMenuItem about

onSync

javax.swing.JMenu onSync

Class org.jSyncManager.Client.ConnectionPanel implements Serializable

Serialized Fields

connection

javax.swing.JComboBox connection

transports

SLPTransportInterface[] transports

resources

java.util.ResourceBundle resources

transport

SLPTransportInterface transport

transListener

TransportChangedListener transListener

parent

SettingsDialog parent

index

int index

Class org.jSyncManager.Client.JConduitInstallDialog implements Serializable

Serialized Fields

conduitbuttons

JConduitInstallDialog.JConduitRadioButton[] conduitbuttons

descrPane

javax.swing.JEditorPane descrPane

descrComp

javax.swing.JScrollPane descrComp

conduitmap

java.util.Map conduitmap

directionLabel

javax.swing.JLabel directionLabel

okButton

javax.swing.JButton okButton

cancelButton

javax.swing.JButton cancelButton

newentry

javax.swing.JRadioButton newentry

entryField

javax.swing.JTextField entryField

selected

java.lang.String selected

Class org.jSyncManager.Client.JConduitInstallDialog.JConduitRadioButton implements Serializable

Serialized Fields

this$0

JConduitInstallDialog this$0

conduit

AbstractConduit conduit

Class org.jSyncManager.Client.jConduitsPanel implements Serializable

Serialized Fields

jConduitList

javax.swing.JList jConduitList

isJConduitActive

java.util.HashMap isJConduitActive

jConduitNames

java.util.ArrayList jConduitNames

parent

SettingsDialog parent

install

javax.swing.JButton install

remove

javax.swing.JButton remove

listModel

javax.swing.DefaultListModel listModel

instDlg

JConduitInstallDialog instDlg

Class org.jSyncManager.Client.LogJFrame implements Serializable

Serialized Fields

textArea

javax.swing.JTextArea textArea

preferences

RegistrationData preferences

Class org.jSyncManager.Client.RegistrationData implements Serializable

Serialized Fields

userName

java.lang.String userName

userID

int userID

disablePopups

boolean disablePopups

manualHide

boolean manualHide

windowPosition

java.awt.Rectangle windowPosition

syncTimeOption

boolean syncTimeOption

defaultConduit

DefaultConduit defaultConduit

allowedIDs

int[] allowedIDs

securityEnabled

boolean securityEnabled

numAllowedIDs

int numAllowedIDs

configured

boolean configured

useFrameFlag

boolean useFrameFlag

transport

SLPTransportInterface transport

Class org.jSyncManager.Client.SettingsDialog implements Serializable

Serialized Fields

tabbedPane

javax.swing.JTabbedPane tabbedPane

tabs

java.util.HashMap tabs

ok

javax.swing.JButton ok

cancel

javax.swing.JButton cancel

help

javax.swing.JButton help

preferences

RegistrationData preferences

connections

ConnectionPanel connections

jconduits

jConduitsPanel jconduits

preferencesPanel

UserPreferencesPanel preferencesPanel

Class org.jSyncManager.Client.UserPreferencesPanel implements Serializable

Serialized Fields

preferences

RegistrationData preferences

parent

SettingsDialog parent

useDateTimeSync

javax.swing.JCheckBox useDateTimeSync


Package org.jSyncManager.Client.GUIParts

Class org.jSyncManager.Client.GUIParts.DetailedErrorMessageDialog implements Serializable

Serialized Fields

resources

java.util.ResourceBundle resources

descriptionName

java.lang.String descriptionName

errorName

java.lang.String errorName

showDetailsName

java.lang.String showDetailsName

hideDetailsName

java.lang.String hideDetailsName

okName

java.lang.String okName

errorLabel

javax.swing.JLabel errorLabel

descriptionLabel

javax.swing.JLabel descriptionLabel

detailedMessageTextArea

javax.swing.JTextArea detailedMessageTextArea

detailedMessageTextAreaScrollPane

javax.swing.JScrollPane detailedMessageTextAreaScrollPane

detailsButton

javax.swing.JButton detailsButton

okButton

javax.swing.JButton okButton

detailedMessage

java.lang.String detailedMessage

description

java.lang.String description

error

java.lang.String error

Class org.jSyncManager.Client.GUIParts.ImageSetPanel implements Serializable

Serialized Fields

startSyncButton

javax.swing.JButton startSyncButton

midSyncButton

javax.swing.JButton midSyncButton

endSyncButton

javax.swing.JButton endSyncButton

startSyncIcon

javax.swing.ImageIcon startSyncIcon

midSyncIcon

javax.swing.ImageIcon midSyncIcon

endSyncIcon

javax.swing.ImageIcon endSyncIcon

Class org.jSyncManager.Client.GUIParts.RestoreDialog implements Serializable

Serialized Fields

okButton

javax.swing.JButton okButton

cancelButton

javax.swing.JButton cancelButton

directionsLabel

javax.swing.JLabel directionsLabel

backupSetList

javax.swing.JList backupSetList

buttonPanel

javax.swing.JPanel buttonPanel

selectedElement

java.lang.String selectedElement

mainPanel

javax.swing.JPanel mainPanel

rb

java.util.ResourceBundle rb

listModel

javax.swing.DefaultListModel listModel

Class org.jSyncManager.Client.GUIParts.StatusDialog implements Serializable

Serialized Fields

resEnglishStrings

java.util.ResourceBundle resEnglishStrings

MainPanel

javax.swing.JPanel MainPanel

txtTitle

javax.swing.JTextField txtTitle

txtStatus

javax.swing.JTextField txtStatus

imagePanel

ImageSetPanel imagePanel

ButtonPanel

javax.swing.JPanel ButtonPanel

btnCancel

javax.swing.JButton btnCancel

startSyncButton

javax.swing.JButton startSyncButton

midSyncButton

javax.swing.JButton midSyncButton

endSyncButton

javax.swing.JButton endSyncButton

startSyncIcon

javax.swing.ImageIcon startSyncIcon

midSyncIcon

javax.swing.ImageIcon midSyncIcon

endSyncIcon

javax.swing.ImageIcon endSyncIcon


Package org.jSyncManager.Client.LegacyClient

Class org.jSyncManager.Client.LegacyClient.AddConduitDialog implements Serializable

Serialized Fields

ivjButton2

java.awt.Button ivjButton2
Deprecated. 

ivjContentsPane

java.awt.Panel ivjContentsPane
Deprecated. 

ivjInstructionLabel

java.awt.Label ivjInstructionLabel
Deprecated. 

ivjOkButton

java.awt.Button ivjOkButton
Deprecated. 

ivjpackageLabel

java.awt.Label ivjpackageLabel
Deprecated. 

ivjTextField1

java.awt.TextField ivjTextField1
Deprecated. 

resEnglishStrings

java.util.ResourceBundle resEnglishStrings
Deprecated. 

parent

JSyncManagerFrame parent
Deprecated. 

mDlg

MessageDialog mDlg
Deprecated. 

Class org.jSyncManager.Client.LegacyClient.ComSelectDialog implements Serializable

Serialized Fields

transportRadioBtns

javax.swing.JRadioButton[] transportRadioBtns
Deprecated. 

transportPanels

javax.swing.JPanel[] transportPanels
Deprecated. 

resources

java.util.ResourceBundle resources
Deprecated. 

transPanelLayout

java.awt.CardLayout transPanelLayout
Deprecated. 

border1

javax.swing.border.TitledBorder border1
Deprecated. 

border2

javax.swing.border.TitledBorder border2
Deprecated. 

radioBtnPanel

javax.swing.JPanel radioBtnPanel
Deprecated. 

transportsPanel

javax.swing.JPanel transportsPanel
Deprecated. 

closeButton

javax.swing.JButton closeButton
Deprecated. 

transports

SLPTransportInterface[] transports
Deprecated. 

Class org.jSyncManager.Client.LegacyClient.DatabaseViewer implements Serializable

Serialized Fields

ivjContentsPane

java.awt.Panel ivjContentsPane
Deprecated. 

ivjDBChoice

java.awt.Choice ivjDBChoice
Deprecated. 

ivjDBInfoArea

java.awt.TextArea ivjDBInfoArea
Deprecated. 

ivjInfoLabel

java.awt.Label ivjInfoLabel
Deprecated. 

dbList

java.util.Vector dbList
Deprecated. 

ivjInfoPanel

java.awt.Panel ivjInfoPanel
Deprecated. 

ivjQuitButton

java.awt.Button ivjQuitButton
Deprecated. 

resLanguageStrings

java.util.ResourceBundle resLanguageStrings
Deprecated. 

Class org.jSyncManager.Client.LegacyClient.DBSetSelectDialog implements Serializable

Serialized Fields

ivjActionLabel

java.awt.Label ivjActionLabel
Deprecated. 

ivjButtonPanel

java.awt.Panel ivjButtonPanel
Deprecated. 

ivjCancelButton

java.awt.Button ivjCancelButton
Deprecated. 

ivjContentsPane

java.awt.Panel ivjContentsPane
Deprecated. 

ivjDBList

java.awt.List ivjDBList
Deprecated. 

ivjEventHandler

DBSetSelectDialog.IvjEventHandler ivjEventHandler
Deprecated. 

ivjOkButton

java.awt.Button ivjOkButton
Deprecated. 

baseDir

java.lang.String baseDir
Deprecated. 

seperator

java.lang.String seperator
Deprecated. 

jsparent

JSyncManagerFrame jsparent
Deprecated. 

Class org.jSyncManager.Client.LegacyClient.DeleterConfirmDialog implements Serializable

Serialized Fields

ivjLabel1

javax.swing.JLabel ivjLabel1
Deprecated. 

ivjNoButton

javax.swing.JButton ivjNoButton
Deprecated. 

ivjPanel1

javax.swing.JPanel ivjPanel1
Deprecated. 

ivjPanel1GridLayout

java.awt.GridLayout ivjPanel1GridLayout
Deprecated. 

ivjSelectedList

javax.swing.JList ivjSelectedList
Deprecated. 

ivjYesButton

javax.swing.JButton ivjYesButton
Deprecated. 

endState

boolean endState
Deprecated. 

Class org.jSyncManager.Client.LegacyClient.DeleterFrame implements Serializable

Serialized Fields

ivjContentsPane

javax.swing.JPanel ivjContentsPane
Deprecated. 

ivjEnabledCB

javax.swing.JCheckBox ivjEnabledCB
Deprecated. 

ivjOkButton

javax.swing.JButton ivjOkButton
Deprecated. 

deleter

Deleter deleter
Deprecated. 

Class org.jSyncManager.Client.LegacyClient.DeleterSelectionFrame implements Serializable

Serialized Fields

ivjButtonPanel

javax.swing.JPanel ivjButtonPanel
Deprecated. 

ivjButtonPanelGridLayout

java.awt.GridLayout ivjButtonPanelGridLayout
Deprecated. 

ivjCancelButton

javax.swing.JButton ivjCancelButton
Deprecated. 

ivjDeleteSelected

javax.swing.JButton ivjDeleteSelected
Deprecated. 

ivjList1

javax.swing.JList ivjList1
Deprecated. 

deleter

Deleter deleter
Deprecated. 

state

boolean state
Deprecated. 

ivjConfirmDlg

DeleterConfirmDialog ivjConfirmDlg
Deprecated. 

Class org.jSyncManager.Client.LegacyClient.GetURLDialog implements Serializable

Serialized Fields

ivjCancelButton

java.awt.Button ivjCancelButton
Deprecated. 

ivjContentsPane

java.awt.Panel ivjContentsPane
Deprecated. 

ivjLabel1

java.awt.Label ivjLabel1
Deprecated. 

ivjOkButton

java.awt.Button ivjOkButton
Deprecated. 

ivjURLEntryField

java.awt.TextField ivjURLEntryField
Deprecated. 

url

java.net.URL url
Deprecated. 

resEnglish

java.util.ResourceBundle resEnglish
Deprecated. 

Class org.jSyncManager.Client.LegacyClient.ImageCanvas implements Serializable

Serialized Fields

image

java.awt.Image image
Deprecated. 

Class org.jSyncManager.Client.LegacyClient.JSyncManagerFrame implements Serializable

Serialized Fields

dbsd

DBSetSelectDialog dbsd
Deprecated. 

dbsd2

DBSetSelectDialog dbsd2
Deprecated. 

ivjGetUserInfoMenuBar

java.awt.MenuBar ivjGetUserInfoMenuBar
Deprecated. 

ivjcommSelectDlg

ComSelectDialog ivjcommSelectDlg
Deprecated. 

ivjlastGoodSyncField

java.awt.TextField ivjlastGoodSyncField
Deprecated. 

ivjlastSyncField

java.awt.TextField ivjlastSyncField
Deprecated. 

ivjokButton

java.awt.Button ivjokButton
Deprecated. 

ivjuserIDField

java.awt.TextField ivjuserIDField
Deprecated. 

ivjuserInfoDlg

java.awt.Dialog ivjuserInfoDlg
Deprecated. 

ivjuserNameField

java.awt.TextField ivjuserNameField
Deprecated. 

ivjdisablePopups

java.awt.CheckboxMenuItem ivjdisablePopups
Deprecated. 

ivjUseSyncFrame

java.awt.CheckboxMenuItem ivjUseSyncFrame
Deprecated. 

ivjMenu3

java.awt.Menu ivjMenu3
Deprecated. 

ivjMenuSeparator1

java.awt.MenuItem ivjMenuSeparator1
Deprecated. 

ivjautoHidePopups

java.awt.CheckboxMenuItem ivjautoHidePopups
Deprecated. 

resEnglishStrings

java.util.ResourceBundle resEnglishStrings
Deprecated. 

registry

RegistrationData registry
Deprecated. 

ivjSyncWindow

SyncWindow ivjSyncWindow
Deprecated. 

ivjSyncFrame

SyncFrame ivjSyncFrame
Deprecated. 

transport

SLPTransportInterface transport
Deprecated. 

ivjConduitsMenu

java.awt.Menu ivjConduitsMenu
Deprecated. 

ivjBackupMenu

java.awt.Menu ivjBackupMenu
Deprecated. 

ivjBackupMenuItem

java.awt.CheckboxMenuItem ivjBackupMenuItem
Deprecated. 

ivjRestoreMenuItem

java.awt.CheckboxMenuItem ivjRestoreMenuItem
Deprecated. 

ivjAuthorLabel

java.awt.Label ivjAuthorLabel
Deprecated. 

ivjInfoMenu

java.awt.Menu ivjInfoMenu
Deprecated. 

ivjLastGoodSyncLabel

java.awt.Label ivjLastGoodSyncLabel
Deprecated. 

ivjLastSyncLabel

java.awt.Label ivjLastSyncLabel
Deprecated. 

ivjMainPanel

java.awt.Panel ivjMainPanel
Deprecated. 

ivjMainTitleLabel

java.awt.Label ivjMainTitleLabel
Deprecated. 

ivjQuitMenuItem

java.awt.MenuItem ivjQuitMenuItem
Deprecated. 

ivjSerialPortSelectionMenuItem

java.awt.MenuItem ivjSerialPortSelectionMenuItem
Deprecated. 

ivjSetupMenu

java.awt.Menu ivjSetupMenu
Deprecated. 

ivjUserContentsPanel

java.awt.Panel ivjUserContentsPanel
Deprecated. 

ivjUserIDLabel

java.awt.Label ivjUserIDLabel
Deprecated. 

ivjUserInfoMenuItem

java.awt.MenuItem ivjUserInfoMenuItem
Deprecated. 

ivjUserNameLabel

java.awt.Label ivjUserNameLabel
Deprecated. 

ivjVersionLabel

java.awt.Label ivjVersionLabel
Deprecated. 

conduitMenuItems

java.util.Vector conduitMenuItems
Deprecated. 

ivjTimeSyncMenuItem

java.awt.CheckboxMenuItem ivjTimeSyncMenuItem
Deprecated. 

ivjInstallConduitMenuItem

java.awt.MenuItem ivjInstallConduitMenuItem
Deprecated. 

ivjInstallLanguageMenuItem

java.awt.MenuItem ivjInstallLanguageMenuItem
Deprecated. 

ivjMenuSeparator2

java.awt.MenuItem ivjMenuSeparator2
Deprecated. 

ivjRemoveConduitMenuItem

java.awt.MenuItem ivjRemoveConduitMenuItem
Deprecated. 

ivjAddConduit

AddConduitDialog ivjAddConduit
Deprecated. 

ivjRemoveConduit

RemoveConduitDialog ivjRemoveConduit
Deprecated. 

messageDlg

MessageDialog messageDlg
Deprecated. 

fileDlg

java.awt.FileDialog fileDlg
Deprecated. 

userPath

java.lang.String userPath
Deprecated. 

restoreName

java.lang.String restoreName
Deprecated. 

securityDlg

SecurityDialog securityDlg
Deprecated. 

securityDialogMenuItem

java.awt.MenuItem securityDialogMenuItem
Deprecated. 

log

LogFrame log
Deprecated. 

logFrameMenuItem

java.awt.MenuItem logFrameMenuItem
Deprecated. 

palmSyncLogBuffer

java.lang.StringBuffer palmSyncLogBuffer
Deprecated. 

sync

Synchronizer sync
Deprecated. 

syncThread

java.lang.Thread syncThread
Deprecated. 

statusStream

java.io.PrintWriter statusStream
Deprecated. 

logStream

java.io.PrintWriter logStream
Deprecated. 

exitAfterError

boolean exitAfterError
Deprecated. 

syncPanel

SyncPanel syncPanel
Deprecated. 

exitFlag

boolean exitFlag
Deprecated. 

switchSyncPanelType

boolean switchSyncPanelType
Deprecated. 

ivjDBInfoMenuItem

java.awt.MenuItem ivjDBInfoMenuItem
Deprecated. 

ivjdbViewer

DatabaseViewer ivjdbViewer
Deprecated. 

dbViewerEnabled

boolean dbViewerEnabled
Deprecated. 

Class org.jSyncManager.Client.LegacyClient.LogFrame implements Serializable

Serialized Fields

ivjContentsPane

java.awt.Panel ivjContentsPane
Deprecated. 

ivjLogData

java.awt.TextArea ivjLogData
Deprecated. 

ivjClearLogMenuItem

java.awt.MenuItem ivjClearLogMenuItem
Deprecated. 

ivjCloseLogMenuItem

java.awt.MenuItem ivjCloseLogMenuItem
Deprecated. 

ivjCopyLogMenuItem

java.awt.MenuItem ivjCopyLogMenuItem
Deprecated. 

ivjLogFrameMenuBar

java.awt.MenuBar ivjLogFrameMenuBar
Deprecated. 

ivjLogMenu

java.awt.Menu ivjLogMenu
Deprecated. 

ivjSaveLogMenuItem

java.awt.MenuItem ivjSaveLogMenuItem
Deprecated. 

ivjFileDialog

java.awt.FileDialog ivjFileDialog
Deprecated. 

Class org.jSyncManager.Client.LegacyClient.MessageDialog implements Serializable

Serialized Fields

ivjContentsPane

java.awt.Panel ivjContentsPane
Deprecated. 

ivjMessageDetails

java.awt.TextArea ivjMessageDetails
Deprecated. 

ivjMessageLabel

java.awt.Label ivjMessageLabel
Deprecated. 

ivjOkButton

java.awt.Button ivjOkButton
Deprecated. 

resEnglish

java.util.ResourceBundle resEnglish
Deprecated. 

Class org.jSyncManager.Client.LegacyClient.NoPortHandlerAvailableException implements Serializable

Class org.jSyncManager.Client.LegacyClient.RemoveConduitDialog implements Serializable

Serialized Fields

ivjContentsPane

java.awt.Panel ivjContentsPane
Deprecated. 

ivjInstructionLabel

java.awt.Label ivjInstructionLabel
Deprecated. 

ivjOkButton

java.awt.Button ivjOkButton
Deprecated. 

ivjpackageLabel

java.awt.Label ivjpackageLabel
Deprecated. 

resEnglishStrings

java.util.ResourceBundle resEnglishStrings
Deprecated. 

ivjCancelButton

java.awt.Button ivjCancelButton
Deprecated. 

ivjConduitChoice

java.awt.Choice ivjConduitChoice
Deprecated. 

parent1

JSyncManagerFrame parent1
Deprecated. 

mDlg

MessageDialog mDlg
Deprecated. 

conduits

java.util.Vector conduits
Deprecated. 

Class org.jSyncManager.Client.LegacyClient.RestoreDBVerifyDlg implements Serializable

Serialized Fields

ivjAllJButton

javax.swing.JButton ivjAllJButton
Deprecated. 

ivjJButtonJPanel

javax.swing.JPanel ivjJButtonJPanel
Deprecated. 

ivjJButtonJPanelGridLayout

java.awt.GridLayout ivjJButtonJPanelGridLayout
Deprecated. 

ivjdbNameLabel

javax.swing.JLabel ivjdbNameLabel
Deprecated. 

ivjNoJButton

javax.swing.JButton ivjNoJButton
Deprecated. 

ivjQuestionLabel

javax.swing.JLabel ivjQuestionLabel
Deprecated. 

ivjRemoveJButton

javax.swing.JButton ivjRemoveJButton
Deprecated. 

ivjYesJButton

javax.swing.JButton ivjYesJButton
Deprecated. 

resultCode

int resultCode
Deprecated. 

Class org.jSyncManager.Client.LegacyClient.SecurityDialog implements Serializable

Serialized Fields

ivjAddID

java.awt.Button ivjAddID
Deprecated. 

ivjContentsPane

java.awt.Panel ivjContentsPane
Deprecated. 

ivjRemoveID

java.awt.Button ivjRemoveID
Deprecated. 

ivjSecurityEnabledCB

java.awt.Checkbox ivjSecurityEnabledCB
Deprecated. 

ivjTextField1

java.awt.TextField ivjTextField1
Deprecated. 

ivjUserIDList

java.awt.List ivjUserIDList
Deprecated. 

ivjCloseButton

java.awt.Button ivjCloseButton
Deprecated. 

ivjAddLastID

java.awt.Button ivjAddLastID
Deprecated. 

manager

JSyncManagerFrame manager
Deprecated. 

Class org.jSyncManager.Client.LegacyClient.SyncFrame implements Serializable

Serialized Fields

syncPanel

SyncPanel syncPanel
Deprecated. 

Class org.jSyncManager.Client.LegacyClient.SyncPanel implements Serializable

Serialized Fields

ivjConnectingLabel

java.awt.Label ivjConnectingLabel
Deprecated. 

ivjDoneLabel

java.awt.Label ivjDoneLabel
Deprecated. 

ivjDoSyncCanvas

java.awt.Panel ivjDoSyncCanvas
Deprecated. 

ivjEndSyncCanvas

java.awt.Panel ivjEndSyncCanvas
Deprecated. 

ivjHideButton

java.awt.Button ivjHideButton
Deprecated. 

ivjInfoChoice

java.awt.TextField ivjInfoChoice
Deprecated. 

ivjInfoPanel

java.awt.Panel ivjInfoPanel
Deprecated. 

ivjMainPanel

java.awt.Panel ivjMainPanel
Deprecated. 

ivjStartSyncCanvas

java.awt.Panel ivjStartSyncCanvas
Deprecated. 

ivjSyncLabel

java.awt.Label ivjSyncLabel
Deprecated. 

ivjConnDimCanvas

ImageCanvas ivjConnDimCanvas
Deprecated. 

ivjConnNormalCanvas

ImageCanvas ivjConnNormalCanvas
Deprecated. 

ivjDoneDimCanvas

ImageCanvas ivjDoneDimCanvas
Deprecated. 

ivjDoneNormalCanvas

ImageCanvas ivjDoneNormalCanvas
Deprecated. 

ivjSyncDimCanvas

ImageCanvas ivjSyncDimCanvas
Deprecated. 

ivjSyncNormalCanvas

ImageCanvas ivjSyncNormalCanvas
Deprecated. 

syncStartDim

java.awt.Image syncStartDim
Deprecated. 

syncStartNormal

java.awt.Image syncStartNormal
Deprecated. 

syncSyncDim

java.awt.Image syncSyncDim
Deprecated. 

syncSyncNormal

java.awt.Image syncSyncNormal
Deprecated. 

syncDoneDim

java.awt.Image syncDoneDim
Deprecated. 

syncDoneNormal

java.awt.Image syncDoneNormal
Deprecated. 

mt

java.awt.MediaTracker mt
Deprecated. 

Class org.jSyncManager.Client.LegacyClient.SyncWindow implements Serializable

Serialized Fields

syncPanel

SyncPanel syncPanel
Deprecated. 

Class org.jSyncManager.Client.LegacyClient.UserNameEntryDialog implements Serializable

Serialized Fields

ivjContentsPane

java.awt.Panel ivjContentsPane
Deprecated. 

ivjLabel1

java.awt.Label ivjLabel1
Deprecated. 

ivjOkButton

java.awt.Button ivjOkButton
Deprecated. 

ivjUserNameField

java.awt.TextField ivjUserNameField
Deprecated. 

userName

java.lang.String userName
Deprecated. 


Package org.jSyncManager.Conduit

Class org.jSyncManager.Conduit.DefaultConduit implements Serializable

Serialized Fields

RestoreDlg

RestoreDBVerifyDlg RestoreDlg


Package org.jSyncManager.Conduit.Alerter

Class org.jSyncManager.Conduit.Alerter.Alerter implements Serializable


Package org.jSyncManager.Conduit.Deleter

Class org.jSyncManager.Conduit.Deleter.Deleter implements Serializable


Package org.jSyncManager.Conduit.Email

Class org.jSyncManager.Conduit.Email.ConnectionsPanel implements Serializable

Serialized Fields

txtHost

javax.swing.JTextField txtHost

txtPort

javax.swing.JTextField txtPort

connSettings

javax.swing.JPanel connSettings

btnRem

javax.swing.JButton btnRem

btnAdd

javax.swing.JButton btnAdd

ButtonPanel

javax.swing.JPanel ButtonPanel

txtPwd

javax.swing.JPasswordField txtPwd

connSettingsPanel

javax.swing.JPanel connSettingsPanel

txtUser

javax.swing.JTextField txtUser

btnMod

javax.swing.JButton btnMod

connList

javax.swing.JList connList

lblHost

javax.swing.JLabel lblHost

lblName

javax.swing.JLabel lblName

lblPort

javax.swing.JLabel lblPort

SettingsPanel

javax.swing.JPanel SettingsPanel

lblUser

javax.swing.JLabel lblUser

lblPwd

javax.swing.JLabel lblPwd

txtName

javax.swing.JTextField txtName

ConnTypePanel

javax.swing.JPanel ConnTypePanel

bgConnType

javax.swing.ButtonGroup bgConnType

lblFrom

javax.swing.JLabel lblFrom

rbSmtp

javax.swing.JRadioButton rbSmtp

rbPop3

javax.swing.JRadioButton rbPop3

lblConnType

javax.swing.JLabel lblConnType

txtFrom

javax.swing.JTextField txtFrom

conns

java.util.Vector conns

Class org.jSyncManager.Conduit.Email.Email implements Serializable

Class org.jSyncManager.Conduit.Email.Email_Base implements Serializable

Class org.jSyncManager.Conduit.Email.PopMail implements Serializable

Class org.jSyncManager.Conduit.Email.SmtpMail implements Serializable


Package org.jSyncManager.Conduit.Installer

Class org.jSyncManager.Conduit.Installer.Installer implements Serializable

Serialized Fields

dbList

java.util.Vector dbList


Package org.jSyncManager.Conduit.NotepadViewer

Class org.jSyncManager.Conduit.NotepadViewer.ImagePanel implements Serializable

Serialized Fields

image

java.awt.Image image

Class org.jSyncManager.Conduit.NotepadViewer.NotepadViewer implements Serializable

Class org.jSyncManager.Conduit.NotepadViewer.NotepadViewerJPanel implements Serializable

Serialized Fields

rb

java.util.ResourceBundle rb

nextButton

javax.swing.JButton nextButton

prevButton

javax.swing.JButton prevButton

titleLabel

javax.swing.JLabel titleLabel

title

javax.swing.JLabel title

creationTimeLabel

javax.swing.JLabel creationTimeLabel

creationTime

javax.swing.JLabel creationTime

modificationTimeLabel

javax.swing.JLabel modificationTimeLabel

modificationTime

javax.swing.JLabel modificationTime

alarmTimeLabel

javax.swing.JLabel alarmTimeLabel

alarmTime

javax.swing.JLabel alarmTime

imageNumLabel

javax.swing.JLabel imageNumLabel

imageNum

javax.swing.JLabel imageNum

buttonPanel

javax.swing.JPanel buttonPanel

infoPanel

javax.swing.JPanel infoPanel

images

java.util.Vector images

currentImage

int currentImage

imgPanel

ImagePanel imgPanel


Package org.jSyncManager.Conduit.TextDump

Class org.jSyncManager.Conduit.TextDump.TextDump implements Serializable


Package org.jSyncManager.Transport

Class org.jSyncManager.Transport.CommAPITransport implements Serializable

Serialized Fields

portName

java.lang.String portName
The name of the port selected for I/O.

Class org.jSyncManager.Transport.DebugTransport implements Serializable

Serialized Fields

realTransport

SLPTransportInterface realTransport
A handle to the transport class we're wrapping.

count

int count
A value to hold the incoming byte count.

Class org.jSyncManager.Transport.JUSBTransport implements Serializable

Serialized Fields

USBdebug

boolean USBdebug

Class org.jSyncManager.Transport.ModemTransport implements Serializable

Serialized Fields

portName

java.lang.String portName
The platform-specific name of the serial port in use.

initString

java.lang.String initString
The initialization string used to setup the modem.


jSyncManager

Copyright (c) 1999 - 2003 Brad BARCLAY and others. All Rights Reserved.