jSyncManager

Uses of Class
org.jSyncManager.API.Conduit.ConduitHandlerException

Packages that use ConduitHandlerException
org.jSyncManager.API.Conduit   
org.jSyncManager.Conduit.Installer   
 

Uses of ConduitHandlerException in org.jSyncManager.API.Conduit
 

Methods in org.jSyncManager.API.Conduit with parameters of type ConduitHandlerException
protected abstract  void AbstractInstaller.exceptionInstallingDatabase(DLPDatabase db, ConduitHandler handler, ConduitHandlerException e)
          A method to handle when an exception is encountered while trying to install a database.
 

Methods in org.jSyncManager.API.Conduit that throw ConduitHandlerException
 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.
 DLPDatabaseInfo ConduitHandler.getDatabaseInfo(java.lang.String dbName)
          Retrieves the Database Info object for a 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.
 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.
 

Uses of ConduitHandlerException in org.jSyncManager.Conduit.Installer
 

Methods in org.jSyncManager.Conduit.Installer with parameters of type ConduitHandlerException
protected  void Installer.exceptionInstallingDatabase(DLPDatabase db, ConduitHandler handler, ConduitHandlerException e)
          A method to handle when an exception is encountered while trying to install a database.
 


jSyncManager

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