Interface java.telephony.privatedata.PrivateData
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface java.telephony.privatedata.PrivateData

public interface PrivateData
extends Object
The Private Data interface for all JTT objects. Any implementation that wants to implement private data should implement this interface on a per-object basis.

Method Index

 o sendPrivateData(Object)
Immediately performs some platform-specific action.
 o setPrivateData(Object)
Associates some platform-specific data with the next method that is invoked on the object for which this PrivateData interface is implemented.

Methods

 o setPrivateData
  public abstract void setPrivateData(Object data) throws Exception
Associates some platform-specific data with the next method that is invoked on the object for which this PrivateData interface is implemented. The format of this data and the manner in which it modifies the method invocation is platform-dependent. This data applies to the next method ONLY and does not affect any future method invocations.

Parameters:
data - The platform-dependent data.
Throws: Exception
Some exception thrown.
 o sendPrivateData
  public abstract void sendPrivateData(Object data) throws Exception
Immediately performs some platform-specific action. The effect of this methods invocation is immediate and does not directly relate to any future object method invocations. The action taken upon receipt of this data is platform-dependent as is the format of the data itself.

Parameters:
data - The platform-dependent data.
Throws: Exception
Some exception thrown.

All Packages  Class Hierarchy  This Package  Previous  Next  Index