jSyncManager

Uses of Class
org.jSyncManager.API.Protocol.NotConnectedException

Packages that use NotConnectedException
org.jSyncManager.API.Conduit   
org.jSyncManager.API.Protocol   
org.jSyncManager.Conduit   
org.jSyncManager.Conduit.Alerter   
org.jSyncManager.Conduit.Deleter   
org.jSyncManager.Conduit.Email   
org.jSyncManager.Conduit.NotepadViewer   
org.jSyncManager.Conduit.TextDump   
 

Uses of NotConnectedException in org.jSyncManager.API.Conduit
 

Methods in org.jSyncManager.API.Conduit that throw NotConnectedException
 void ConduitHandler.cleanupDatabase(byte dbID)
          Cleans-up the specified database.
 void ConduitHandler.closeAllDatabases()
          Closes all open databases.
 void ConduitHandler.closeDatabase(byte dbID)
          Closes a specified database.
 byte ConduitHandler.createDatabase(java.lang.String creator, java.lang.String type, java.lang.String dbName, char flags, char version)
          Creates a new database with the specified parameters.
 void ConduitHandler.deleteDatabase(java.lang.String dbName)
          Deletes the specified database.
 void ConduitHandler.deleteRecord(byte dbID, byte flags, int recordID)
          Deletes a record from the remote Palm.
 void ConduitHandler.deleteResource(byte dbID, byte flags, int type, char resourceID)
          Deletes the specified resource from the specified Palm database.
 DLPBlock ConduitHandler.getApplicationBlock(byte dbID)
          Retrieves the application block for the specified database.
 int ConduitHandler.getOpenDatabaseInfo(byte dbID)
          Returns the number of resources or records in a currently open database.
 int ConduitHandler.getRecordCount(byte dbID)
          Deprecated. as of v1.1, this method has been renamed to getOpenDatabaseInfo.
 DLPBlock ConduitHandler.getSortBlock(byte dbID)
          Retrieves the Sort Block from the specified database, if one exists.
 DLPStorageInfo ConduitHandler.getStorageInfo(byte card)
          Gets the current storage info for the specified memory card.
 boolean ConduitHandler.hasDatabase(java.lang.String dbName)
          Checks to see if the Palm has the specified database.
 void ConduitHandler.moveCategory(byte dbID, byte to, byte from)
          Moves a category from one ID to another for the specified database.
 void ConduitHandler.openConduit()
          Informs the remote Palm that a new jConduit is being opened.
 byte ConduitHandler.openDatabase(java.lang.String dbName, byte mode)
          Opens the specified database in the specified mode.
 DLPAppPreference ConduitHandler.readAppPreference(int creatorID, char prefID, char size, byte flags)
          Reads the specified application preference.
 DLPAppPreference ConduitHandler.readAppPreference(java.lang.String creatorID, char prefID, char size, byte flags)
          Reads the specified application preference.
 DLPAppPreference ConduitHandler.readAppPreference(byte[] creatorID, char prefID, char size, byte flags)
          Reads the specified application preference.
 DLPDatabase ConduitHandler.readDatabase(java.lang.String dbName)
          Reads an entire database from the Palm.
 DLPRecord ConduitHandler.readNextModifiedRecord(byte dbID)
          Read the next record from the specified database which has it's Modified flag set.
 DLPRecord ConduitHandler.readNextModifiedRecordInCategory(byte dbID, byte category)
          Read the next record from the specified database and category which has it's Modified flag set.
 DLPRecord ConduitHandler.readNextRecordInCategory(byte dbID, byte category)
          Read the next record from the specified database and category.
 DLPRecord ConduitHandler.readRecord(byte dbID, char index)
          Deprecated. this method has been replaced by readRecordByIndex, as it is too easy to incorrectly cast and confuse calls between the overloaded readRecord methods.
 DLPRecord ConduitHandler.readRecord(byte dbID, int recordID)
          Deprecated. this method has been replaced by readRecordByID, as it is too easy to incorrectly cast and confuse calls between the overloaded readRecord methods.
 DLPRecord ConduitHandler.readRecordByID(byte dbID, int recordID)
          Reads the record from the specified database that has the specified record ID.
 DLPRecord ConduitHandler.readRecordByIndex(byte dbID, char recordIndex)
          Reads the record from the specified database that has the specified record index.
 int[] ConduitHandler.readRecordIDList(byte dbID, byte flags, char firstRecNum, char maximumEntries)
          Reads the ID list for the records contained within the specified database.
 DLPResource ConduitHandler.readResource(byte dbID, char resourceIndex)
          Deprecated. this method has been replaced by readResourceByIndex, as it is too easy to incorrectly cast and confuse calls between the overloaded readResource methods.
 DLPResource ConduitHandler.readResource(byte dbID, int type, char resourceID)
          Deprecated. this method has been replaced by readResourceByID, as it is too easy to incorrectly cast and confuse calls between the overloaded readResource methods.
 DLPResource ConduitHandler.readResourceByID(byte dbID, int type, char resourceID)
          Reads the resource from the specified database that has the specified resource ID.
 DLPResource ConduitHandler.readResourceByIndex(byte dbID, char resourceIndex)
          Reads the resource from the specified database that has the specified resource index.
 void ConduitHandler.resetRecordIndex(byte dbID)
          Resets the readNextModifiedRecord counters back to the beginning of the database.
 void ConduitHandler.resetSyncFlags(byte dbID)
          Resets all dirty flags in the specified database, and sorts the last sync time to now.
 void ConduitHandler.resetSystem()
          Causes the Palm to require a reboot after synchronization completes.
 void ConduitHandler.writeApplicationBlock(byte dbID, DLPBlock appBlock)
          Writes an application block to the remote device.
 void ConduitHandler.writeApplicationBlock(byte dbID, byte[] appBlock)
          Writes an application block to the remote device.
 void ConduitHandler.writeAppPreference(int creatorID, char prefID, byte flags, DLPAppPreference preference)
          Writes an application preference to the remote device.
 void ConduitHandler.writeDatabase(DLPDatabase dbName)
          Write an entire database to the remote device.
 int ConduitHandler.writeRecord(byte dbID, byte flags, int recordID, byte attributes, byte category, byte[] data)
          Writes a record to the remote device.
 int ConduitHandler.writeRecord(byte dbID, byte flags, DLPRecord record)
          Writes a record to the remote device.
 void ConduitHandler.writeResource(byte dbID, int type, char resourceID, byte[] data)
          Writes a resource to the remote device.
 void ConduitHandler.writeResource(byte dbID, DLPResource resource)
          Writes a resource to the remote device.
 void ConduitHandler.writeSortBlock(byte dbID, DLPBlock sortBlock)
          Writes an sort block to the remote device.
 void ConduitHandler.writeSortBlock(byte dbID, byte[] sortBlock)
          Writes an sort block to the remote device.
 java.lang.String ConduitHandler.getDeviceSerialNumber()
          Retreives the handhelds serial number.
abstract  void AbstractConduit.startSync(ConduitHandler conduitHandler, DLPUserInfo user)
          This method is called when this jConduit is given the opportunity to synchronize.
 void AbstractInstaller.startSync(ConduitHandler cHandler, DLPUserInfo user)
          This method is called when this jConduit is given the opportunity to synchronize.
 

Uses of NotConnectedException in org.jSyncManager.API.Protocol
 

Methods in org.jSyncManager.API.Protocol that throw NotConnectedException
 GenericPacket PADP.readPacket()
          Reads a packet from the ready queue.
protected  void PADP.sendPacket(PADP_Packet pkt)
          Sends a packet to the underlying SLP protocol handler.
 void PADP.transmitPacket(GenericPacket pkt)
          Transmit a packet to the underlying SLP protocol layer.
 void PADP.transmitPacket(byte[] data, byte hostSocket, byte serverSocket)
          Transmit a packet to the underlying SLP protocol layer.
protected  void PADP.transmitPacket(byte[] data, byte hostSocket, byte serverSocket, boolean flag)
          Transmit a packet to the underlying SLP protocol layer.
 GenericPacket CMPDLPTransferInterface.readPacket()
          Reads a packet from the underlying communication subsystem.
 void CMPDLPTransferInterface.transmitPacket(byte[] date, byte srcSocket, byte destSocket)
          Transmits a packet to the underlying communication subsystem.
 void CMP_DLP.connect()
          Attempt to listen for a connection to the remote CMP/DLP enabled device.
 DLP_Packet CMP_DLP.getDLPPacket(DLP_Packet dlp_packet)
          Retreives a DLP packet from the underlying protocol in the stack.
 void CMP_DLP.suspend()
          Suspends the synchronization.
 void JHotSync.addSyncLogEntry(java.lang.String s)
          Add an entry to the handhelds sync log.
 void JHotSync.cleanupDatabase(byte dbID)
          Cleans up the specified database.
 void JHotSync.closeAllDatabases()
          Close all open databases.
 void JHotSync.closeDatabase(byte dbID)
          Close the specified daatabase.
 void JHotSync.connect()
          Connect the protocol stack, and start listening for a synchronization request.
 byte JHotSync.createDatabase(byte card, int creator, int type, java.lang.String dbName, char flags, char version)
          Creates a database with the specified parameters.
 byte JHotSync.createDatabase(byte card, java.lang.String creator, java.lang.String type, java.lang.String dbName, char flags, char version)
          Creates a database with the specified parameters.
 void JHotSync.deleteDatabase(byte card, java.lang.String dbName)
          Deletes the database with the specified properties.
 void JHotSync.deleteRecord(byte dbID, byte flags, int recordID)
          Delete a record from the handheld.
 void JHotSync.deleteResource(byte dbID, byte flags, int type, char resourceID)
          Delete the specified resource from the handheld.
 void JHotSync.disconnect()
          Disconnects the protocol stack from the remote end.
 void JHotSync.disconnect(char reasonCode)
          Disconnects the protocol stack for the supplied reason code.
 DLPBlock JHotSync.getApplicationBlock(byte dbID, char offset, char length)
          Retrieve the specified application block.
 DLPDatabaseListGroup JHotSync.getDatabaseList(byte searchFlags, byte cardNumber, char startIndex)
          Gets the list of information on the databases stored on the remote Palm Computing Platform device.
 int JHotSync.getOpenDatabaseInfo(byte dbID)
          Gets the number of records/resources in an open database.
 DLPBlock JHotSync.getSortBlock(byte dbID, char offset, char length)
          Gets the sort block for the specified database.
 DLPStorageInfo JHotSync.getStorageInfo(byte card)
          Retreives the storage information for the specified card.
 DLPSystemInfo JHotSync.getSystemInfo()
          Retreives the handhelds system information.
 java.util.Calendar JHotSync.getTime()
          Retreives the date and time reported by the handheld.
 DLPUserInfo JHotSync.getUserInfo()
          Retreives the user information for the handheld.
 void JHotSync.moveCategory(byte dbID, byte from, byte to)
          Moves the specified category from one ID to another.
 void JHotSync.openConduit()
          Informs the handheld that a conduit is about to be opened.
 byte JHotSync.openDatabase(byte card, byte mode, java.lang.String dbName)
          Open the specified database using the specified I/O mode.
 DLPAppPreference JHotSync.readAppPreference(int creatorID, char prefID, char size, byte flags)
          Reads an application preference from the handheld.
 DLPRecord JHotSync.readNextModifiedRecord(byte dbID)
          Read the next modified record from the specified database.
 DLPRecord JHotSync.readNextModifiedRecordInCategory(byte dbID, byte category)
          Reads the next modified record in the specified category.
 DLPRecord JHotSync.readNextRecordInCategory(byte dbID, byte category)
          Reads the next record in the specified category.
 DLPRecord JHotSync.readRecord(byte dbID, char index, char offset, char length)
          Read a record from the specified database.
 DLPRecord JHotSync.readRecord(byte dbID, int id, char offset, char length)
          Read a record from the specified database.
 int[] JHotSync.readRecordIDList(byte dbID, byte flags, char start, char maxEntries)
          Reads the list of record IDs from the specified database.
 DLPResource JHotSync.readResource(byte dbID, char index, char offset, char length)
          Read a resource from the specified database by index.
 DLPResource JHotSync.readResource(byte dbID, int type, char id, char offset, char length)
          Read a resource from the specified database by resource ID.
 void JHotSync.resetRecordIndex(byte dbID)
          Reset the record index.
 void JHotSync.resetSyncFlags(byte dbID)
          Reset the synchronization flags for the given database.
 void JHotSync.resetSystem()
          Request that the handheld reset itself at the end of synchronization.
 void JHotSync.setTime(java.util.Calendar time)
          Sets the date and time on the handheld.
 void JHotSync.setUserInfo(DLPUserInfo userInfo)
          Set the user information for the handheld.
 void JHotSync.suspend()
          Put the protocol stack into suspended mode.
 void JHotSync.writeApplicationBlock(byte dbID, DLPBlock appBlock)
          Write an application block to the specified database.
 void JHotSync.writeApplicationBlock(byte dbID, byte[] data)
          Write the specified application block to the specified database.
 void JHotSync.writeAppPreference(int creatorID, char prefID, byte flags, DLPAppPreference preference)
          Write an application preference.
 int JHotSync.writeRecord(byte dbID, byte flags, int id, byte attributes, byte category, byte[] data)
          Write a record to the specified database.
 int JHotSync.writeRecord(byte dbID, byte flags, DLPRecord record)
          Write a record to the specified database.
 void JHotSync.writeResource(byte dbID, int type, char id, byte[] data)
          Write a resource to the specified database
 void JHotSync.writeResource(byte dbID, DLPResource res)
          Write a resource to the specified database
 void JHotSync.writeSortBlock(byte dbID, DLPBlock sortBlock)
          Writes a sort block to the specified database.
 void JHotSync.writeSortBlock(byte dbID, byte[] data)
          Writes a sort block to the specified database.
 byte[] JHotSync.processRPC(byte[] data)
          Processen a Remote Procedure Call request.
 GenericPacket SLP.readPacket()
          Reads the next packet from the input queue.
 void SLP.writePacket(byte[] data, byte src, byte dest, byte transID)
          Writen a packet of data via the SLP protocol to the other end of the transfer.
 GenericPacket USB.readPacket()
          Reads a packet from the underlying communication subsystem.
 void USB.transmitPacket(byte[] data, byte srcSocket, byte destSocket)
          Transmits a packet to the underlying communication subsystem.
 

Uses of NotConnectedException in org.jSyncManager.Conduit
 

Methods in org.jSyncManager.Conduit that throw NotConnectedException
 void DefaultConduit.startSync(ConduitHandler conduithandler, DLPUserInfo user)
          This method is called when this jConduit is given the opportunity to synchronize.
 

Uses of NotConnectedException in org.jSyncManager.Conduit.Alerter
 

Methods in org.jSyncManager.Conduit.Alerter that throw NotConnectedException
 void Alerter.startSync(ConduitHandler conduitHandler, DLPUserInfo user)
          This method is called when this jConduit is given the opportunity to synchronize.
 

Uses of NotConnectedException in org.jSyncManager.Conduit.Deleter
 

Methods in org.jSyncManager.Conduit.Deleter that throw NotConnectedException
 void Deleter.startSync(ConduitHandler conduithandler, DLPUserInfo user)
          This method is called when this jConduit is given the opportunity to synchronize.
 

Uses of NotConnectedException in org.jSyncManager.Conduit.Email
 

Methods in org.jSyncManager.Conduit.Email that throw NotConnectedException
 void Email.startSync(ConduitHandler conduitHandler, DLPUserInfo user)
          This method is called when this jConduit is given the opportunity to synchronize.
 

Uses of NotConnectedException in org.jSyncManager.Conduit.NotepadViewer
 

Methods in org.jSyncManager.Conduit.NotepadViewer that throw NotConnectedException
 void NotepadViewer.startSync(ConduitHandler ch, DLPUserInfo user)
          This method is called when this jConduit is given the opportunity to synchronize.
 

Uses of NotConnectedException in org.jSyncManager.Conduit.TextDump
 

Methods in org.jSyncManager.Conduit.TextDump that throw NotConnectedException
 void TextDump.startSync(ConduitHandler conduitHandler, DLPUserInfo user)
          This method is called when this jConduit is given the opportunity to synchronize.
 


jSyncManager

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