|
jSyncManager | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DLPFunctionCallException | |
---|---|
org.jSyncManager.API.Conduit | |
org.jSyncManager.API.Protocol | |
org.jSyncManager.API.Protocol.Util |
Uses of DLPFunctionCallException in org.jSyncManager.API.Conduit |
---|
Methods in org.jSyncManager.API.Conduit that return DLPFunctionCallException | |
DLPFunctionCallException |
ConduitHandlerException.getDlpException()
Retrieves the DLPFunctionCallException which caused this exception to be thrown. |
Constructors in org.jSyncManager.API.Conduit with parameters of type DLPFunctionCallException | |
ConduitHandlerException(java.lang.String s,
DLPFunctionCallException ex)
Creates a new ConduitHandlerException, specifying the DLPFunctionCallException which generated this exception, and a text message detailing the exception. |
|
ConduitHandlerException(DLPFunctionCallException ex)
Creates a new ConduitHandlerException, specifying the DLPFunctionCallException which generated this exception. |
Uses of DLPFunctionCallException in org.jSyncManager.API.Protocol |
---|
Methods in org.jSyncManager.API.Protocol that throw DLPFunctionCallException | |
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. |
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. |
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.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. |
Uses of DLPFunctionCallException in org.jSyncManager.API.Protocol.Util |
---|
Methods in org.jSyncManager.API.Protocol.Util that throw DLPFunctionCallException | |
static DLPDatabaseListGroup |
DLPDatabaseListGroup.bytes2DBList(byte[] data)
Converts a list of database information to a Database List group object. |
void |
DLPUserInfo.setUserName(java.lang.String s)
Set the user name. |
DLPCardInfo |
DLPStorageInfo.getCardInfo(int i)
Get the Card Info object for the specified card, by index. |
Constructors in org.jSyncManager.API.Protocol.Util that throw DLPFunctionCallException | |
DLPCardInfo(byte[] data)
Construct a new Card Info object using the specified card info byte array. |
|
DLPRecord(byte[] inputData)
Create a new DLPRecord object from an array of bytes. |
|
DLPDatabaseListGroup(byte[] groupData)
Construct a new database list group object based on the byte array retreived from the handheld. |
|
DLPUserInfo(byte[] userBlock)
Create a new DLP User Info object based on the data queried from the handheld. |
|
DLPDatabaseInfo(byte[] dbInfoData)
DLPDatabaseInfo constructor, given the byte array data block. |
|
DLPSystemInfo(byte[] arg1,
byte[] arg2)
Construct a new System Info object based on the received arguments. |
|
DLPResource(byte[] inData)
Create a new Resource object based on the provided resource byte array. |
|
DLPStorageInfo(byte[] arg1,
byte[] arg2)
Construct a new Storage Info object based on the received arguments. |
|
DLPBlock(byte[] inputData)
Creates a new block based on the input byte array. |
|
DLPAppPreference(byte[] data)
Create an application preference object from the provided byte representation. |
|
jSyncManager | |||||||||
PREV NEXT | FRAMES NO FRAMES |