MQeFields

In order to comply with Java™ 2 Platform Micro Edition's (J2ME) Connected Limited Device Configuration (CLDC) / Mobile Information Device Protocol (MIDP) specification, several methods have been modified or removed from MQeFields:
  • The explicit use of the floating point types, float and double, has been removed.

    For example, you might have used putFloat("Val1", -1.234).

    Under Java platforms that enable the use of float/double, this functionality can be mimicked by explicitly converting the data into the equivalent int or long using the base types Java Object convert method.

    In this case, the above method is replaced with putFloatAsInt("Val1",Float.floatToIntBits(-1.234)).

    Note: Version 1 applications can retrieve these values as normal.
  • Methods dumpToFile and restoreFromFile have been removed.

    Applications that used these functions must now dump the MQeFields object and write the byte array to the specified file.

  • XOR'ing of dumped data has also been removed.

Terms of use | WebSphere software

(c) Copyright IBM Corporation 2004, 2005. All rights reserved.