Methods Summary |
---|
public short | copyAdditionalInformation(byte[] dstBuffer, short dstOffset, short dstLength)Copies a part of the additional information field from the first Result
TLV element of the current response data field.
If the element is available it becomes the TLV selected.
Notes:
- If
dstOffset or
dstLength parameter is negative an
ArrayIndexOutOfBoundsException
exception is thrown and no copy is performed.
- If
dstOffset+dstLength is
greater than dstBuffer.length , the length
of the dstBuffer array an
ArrayIndexOutOfBoundsException exception is thrown
and no copy is performed.
return 0;
|
public short | copyTextString(byte[] dstBuffer, short dstOffset)Copies the text string value from the first Text String TLV element
of the
current response data field. The Data Coding Scheme byte is not copied.
If the element is available it becomes the TLV selected.
return 0;
|
public short | getAdditionalInformationLength()Returns the length of the additional information field from the first
Result TLV element of the current response data field.
If the element is available it becomes the TLV selected.
return 0;
|
public byte | getGeneralResult()Returns the general result byte of the Proactive command.
If the element is available it becomes the TLV selected.
return 0;
|
public byte | getItemIdentifier()Returns the item identifier byte value from the first Item
Identifier TLV element of the current response data field.
If the element is available it becomes the TLV selected.
return 0;
|
public byte | getTextStringCodingScheme()Returns the data coding scheme byte from the first Text String TLV
element of the current response data field.
If the element is available it becomes the TLV selected.
return 0;
|
public short | getTextStringLength()Returns the text string length value from the first Text String TLV
element of the current response data field. The Data Coding Scheme byte
is not taken into account.
If the element is available it becomes the TLV selected.
return 0;
|
public static sim.toolkit.ProactiveResponseHandler | getTheHandler()Returns the single system instance of the
ProactiveResponseHandler class. The applet shall get the
reference of the handler at its triggering, the beginning of
the processToolkit method.
return null;
|