Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

proxy.protocol
Class Frame  view Frame download Frame.java

java.lang.Object
  extended byproxy.protocol.Frame
Direct Known Subclasses:
Reply, Request

public class Frame
extends java.lang.Object

The Frame class is an abstract class implementing a message which is sent between the library and the proxy server. The message concerns a JMS action such as creation of a new JMS object on the mobile device, a call of a JMS method on this object or a JNDI action, such as a lookup of a JMS administered object.


Field Summary
 int code
           Represents the code of the message contained in the Frame according to the Protocol interface.
private  java.lang.Object[] data
           Represents ...
 int id
           The unique id of this Frame on the mobile device, where it came from.
 int mobile
           The id of the mobile device, where this frame came from.
 int owner
           Represents the id of calling MIDlet
 
Constructor Summary
Frame()
           
 
Method Summary
 java.lang.Object[] getData()
           Returns the objects associated with this frame.
 void setData(java.lang.Object[] _data)
           Sets the objects associated with this frame.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

id

public int id

The unique id of this Frame on the mobile device, where it came from.


code

public int code

Represents the code of the message contained in the Frame according to the Protocol interface.

See Also:
>


owner

public int owner

Represents the id of calling MIDlet


mobile

public int mobile

The id of the mobile device, where this frame came from.


data

private java.lang.Object[] data

Represents ...

Constructor Detail

Frame

public Frame()
Method Detail

getData

public java.lang.Object[] getData()

Returns the objects associated with this frame.


setData

public void setData(java.lang.Object[] _data)

Sets the objects associated with this frame.