SHOW Signed

net.rim.blackberry.api.pim
Interface PIMItem

All Known Subinterfaces:
BlackBerryContact, Contact, Event, ToDo

public interface PIMItem

Represents a personal information management (PIM) item.

A PIMItem, such as an event, is created, populated, added to a list, then associated with that list for life. PIMItems can be created or PIM information can be imported from pre-existing PIMItems.

A PIMItem contains data fields that represent information about the item itself. For example, the Contact object contains information about a contact entry such as a phone number, street address or job title. While the item may contain many fields, the list object that the item belongs to defines which fields it's objects can contain. If a list encounters a PIMItem object that contains unsupported fields, those fields are discarded.

The PIMList.isSupportedField(int) is invoked to determine if a field (as specified by the integer argument) is supported by a PIMList. Similarly, the PIMList.getSupportedAttributes(int) method is invoked to return an integer array representing all fields supported by the list.

The PIMItem object represents the common interfaces of the Event, Contact and ToDo objects.

Each field has the following information associated with it:

A field can have more than one value associated with it. All values must be of the same data type. An index is used to reference mulitple values within a field, beginning with zero and ending with n-1, where n is the total number of values. The index values must be assigned to a value. If a value is removed or added, using the appropriate method, the index is reordered.

Each field has an associated label used for display purposes. The label can be returned by invoking the PIMList.getFieldLabel(int) method.

The supported field data types are INT, BINARY, BOOLEAN, DATE, or STRING.

For more information about this class or about the personal information management (PIM) API, refer to The PDA Profile specification (JSR-000075) for the J2ME(TM) Platform.

Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

Since:
PDAP 1.0
See Also:
Event, ToDo, Contact, PIMList

Field Summary
 Category: Signed static int ATTR_NONE
          Indicates that no additional attributes are applicable for this field.
 Category: Signed static int BINARY
          Indicates that the data type is binary.
 Category: Signed static int BOOLEAN
          Indicates that the data type is a Boolean.
 Category: Signed static int DATE
          Indicates that the data type is a date.
 Category: Signed static int EXTENDED_ATTRIBUTE_MIN_VALUE
          Represents the minimum value for an extended attribute constant.
 Category: Signed static int EXTENDED_FIELD_MIN_VALUE
          Represents the minimum value for an extended field constant.
 Category: Signed static int INT
          Indicates that the data type is an integer.
 Category: Signed static int STRING
          Indicates that the data type is a string.
 Category: Signed static int STRING_ARRAY
          Indicates that the data type is a string array.
 
Method Summary
 Category: Signed  void addBinary(int field, int attributes, byte[] value, int offset, int length)
          Adds a binary value to a field within the item.
 Category: Signed  void addBoolean(int field, int attribute, boolean value)
          Adds a boolean value to the field.
 Category: Signed  void addDate(int field, int attributes, long value)
          Adds a date to a specified field.
 Category: Signed  void addInt(int field, int attributes, int value)
          Adds the integer value contained in the field.
 Category: Signed  void addString(int field, int attributes, String value)
          Adds a string value to the field.
 Category: Signed  void addStringArray(int field, int attributes, String[] value)
          Adds a string array value to the field.
 Category: Signed  void addToCategory(String category)
          Adds a category to this item.
 Category: Signed  void commit()
          Commits the PIMItem to the list.
 Category: Signed  int countValues(int field)
          Returns a value indicating the number of values currently contained within the field.
 Category: Signed  int getAttributes(int field, int index)
          Returns the attributes associated with a specified data value.
 Category: Signed  byte[] getBinary(int field, int index)
          Returns a byte array containing a binary representation of the data within the given field.
 Category: Signed  boolean getBoolean(int field, int index)
          Returns the boolean value contained in the field.
 Category: Signed  String[] getCategories()
          Returns the names of all categories associated with this item.
 Category: Signed  long getDate(int field, int index)
          Returns the date value contained in the field.
 Category: Signed  int[] getFields()
          Returns an integer array containing all fields for which data is associated.
 Category: Signed  int getInt(int field, int index)
          Returns the integer value contained in the field.
 Category: Signed  PIMList getPIMList()
          Returns the PIMList that contains this item.
 Category: Signed  String getString(int field, int index)
          Returns the string value contained in the field.
 Category: Signed  String[] getStringArray(int field, int index)
          Returns the string array value contained in the field.
 Category: Signed  boolean isModified()
          Returns a boolean that indicates whether or not this PIMItem has been modified since the last commit or retrieval.
 Category: Signed  int maxCategories()
          Returns the maximum number of categories that this item can be assigned to.
 Category: Signed  void removeFromCategory(String category)
          Removes a category from this item.
 Category: Signed  void removeValue(int field, int index)
          Removes a value from the specified field, given the index.
 Category: Signed  void setBinary(int field, int index, int attributes, byte[] value, int offset, int length)
          Sets an existing binary value in a field.
 Category: Signed  void setBoolean(int field, int index, int attributes, boolean value)
          Sets an existing boolean value in a field.
 Category: Signed  void setDate(int field, int index, int attributes, long value)
          Sets an existing date value in a field.
 Category: Signed  void setInt(int field, int index, int attributes, int value)
          Sets an existing integer value in a field.
 Category: Signed  void setString(int field, int index, int attributes, String value)
          Sets an existing string value in a field.
 Category: Signed  void setStringArray(int field, int index, int attributes, String[] value)
          Sets an existing string array value in a field.
 

Field Detail

BINARY

public static final int BINARY
Indicates that the data type is binary.

The getBinary(int, int) method is used to return a binary value. The addBinary(int, int, byte[], int, int) us used to add a binary value to a field.

Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

BOOLEAN

public static final int BOOLEAN
Indicates that the data type is a Boolean.

The getBoolean(int, int) method is used to return a Boolean value. The addBoolean(int, int, boolean) method is used to add a Boolean value.

Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

DATE

public static final int DATE
Indicates that the data type is a date.

The getDate(int, int) method is used to return a date value. The addDate(int, int, long) method is used to add a date value.

Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

INT

public static final int INT
Indicates that the data type is an integer.

The getInt(int, int) method is used to return an integer value. The addInt(int, int, int) method is used to add an integer value.

Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

STRING

public static final int STRING
Indicates that the data type is a string.

The getString(int, int) method is used to return a string value. The addString(int, int, java.lang.String) method is used to add a string value.

Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

STRING_ARRAY

public static final int STRING_ARRAY
Indicates that the data type is a string array.

The getStringArray(int, int) method is used to return a string array value. The addStringArray(int, int, java.lang.String[]) method is used to add a string array value.

Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

ATTR_NONE

public static final int ATTR_NONE
Indicates that no additional attributes are applicable for this field.

Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

EXTENDED_FIELD_MIN_VALUE

public static final int EXTENDED_FIELD_MIN_VALUE
Represents the minimum value for an extended field constant.
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

EXTENDED_ATTRIBUTE_MIN_VALUE

public static final int EXTENDED_ATTRIBUTE_MIN_VALUE
Represents the minimum value for an extended attribute constant.
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.
Method Detail

getPIMList

public PIMList getPIMList()
Returns the PIMList that contains this item.

Returns:
A PIMList object.
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

commit

public void commit()
            throws PIMException
Commits the PIMItem to the list.

Categories that are specified in the PIMItem that are not supported by the PIMList will be discarded.

Throws:
PIMException - Thrown if an error occurs with the item, or the list could not be accessed.
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

isModified

public boolean isModified()
Returns a boolean that indicates whether or not this PIMItem has been modified since the last commit or retrieval.

Returns:
A boolean.
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

getFields

public int[] getFields()
Returns an integer array containing all fields for which data is associated.

This method is useful because it returns only fields with data in them. The user does not need to iterate through empty or unsupported fields.

Returns:
An integer array containing the fields for which data is associated.
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

getBinary

public byte[] getBinary(int field,
                        int index)
Returns a byte array containing a binary representation of the data within the given field.

The PIMList.isSupportedField(int) should be used to verify the validity of the field before invoking this method.

Parameters:
field - An integer representing the field for which to return the binary representation.
index - An integer representing the index of the data within the field.
Returns:
A byte array containing the binary representation ("B" binary encoded string) of the data within this field.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

addBinary

public void addBinary(int field,
                      int attributes,
                      byte[] value,
                      int offset,
                      int length)
Adds a binary value to a field within the item.

The PIMList.isSupportedField(int) should be used to verify the validity of the field before invoking this method.

Parameters:
field - The field to add the binary data to.
attributes - An integer specifying any attributes that describe this field.
value - The data, a byte array containing a "B" binary encoded string, to add to the field.
offset - The offset, or initial position of the data, within the array.
length - The length of data in the array.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

getDate

public long getDate(int field,
                    int index)
Returns the date value contained in the field.

The PIMList.isSupportedField(int) should be used to verify the validity of the field before invoking this method.

Parameters:
field - An integer representing the field for which to return the date.
index - The index of the data within the field.
Returns:
A long representing the date.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

addDate

public void addDate(int field,
                    int attributes,
                    long value)
Adds a date to a specified field.

The PIMList.isSupportedField(int) should be used to verify the validity of the field before invoking this method.

Parameters:
field - An integer representing the field for which to add the date.
attributes - An integer specifying any attributes that describe this field.
value - The value of the date to add.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

getInt

public int getInt(int field,
                  int index)
Returns the integer value contained in the field.

The PIMList.isSupportedField(int) should be used to verify the validity of the field before invoking this method.

Parameters:
field - An integer representing the field for which to return the value.
index - The index of the data within the field.
Returns:
The integer value.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

addInt

public void addInt(int field,
                   int attributes,
                   int value)
Adds the integer value contained in the field.

The PIMList.isSupportedField(int) should be used to verify the validity of the field before invoking this method.

Parameters:
field - An integer representing the field for which to add the data.
attributes - An integer specifying any attributes that describe this field.
value - The data to add to the field.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

getString

public String getString(int field,
                        int index)
Returns the string value contained in the field.

The PIMList.isSupportedField(int) should be used to verify the validity of the field before invoking this method.

Parameters:
field - An integer representing the field for which to return the value.
index - The index of the data within the field.
Returns:
A string. The string will not contain any escape characters which might have been used to input the string. The null value is an acceptable value.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

addString

public void addString(int field,
                      int attributes,
                      String value)
Adds a string value to the field.

The PIMList.isSupportedField(int) should be used to verify the validity of the field before invoking this method.

Parameters:
field - An integer representing the field for which to add the data.
attributes - An integer specifying any attributes that describe this field.
value - The string to add to the field. The string will not contain any escape characters which might have been used to input the string. The null value is an acceptable value.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

getStringArray

public String[] getStringArray(int field,
                               int index)
Returns the string array value contained in the field.

The PIMList.isSupportedField(int) should be used to verify the validity of the field before invoking this method.

Parameters:
field - An integer representing the field for which to return the value.
index - The index of the data within the field.
Returns:
A string array.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

addStringArray

public void addStringArray(int field,
                           int attributes,
                           String[] value)
Adds a string array value to the field.

The PIMList.isSupportedField(int) should be used to verify the validity of the field before invoking this method.

Parameters:
field - An integer representing the field for which to add the data.
attributes - An integer specifying any attributes that describe this field.
value - The string array to add to the field.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

getBoolean

public boolean getBoolean(int field,
                          int index)
Returns the boolean value contained in the field.

The PIMList.isSupportedField(int) should be used to verify the validity of the field before invoking this method.

Parameters:
field - An integer representing the field for which to return the boolean.
index - The index of the data within the field.
Returns:
A boolean.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

addBoolean

public void addBoolean(int field,
                       int attribute,
                       boolean value)
Adds a boolean value to the field.

The PIMList.isSupportedField(int) should be used to verify the validity of the field before invoking this method.

Parameters:
field - An integer representing the field for which to add the data.
attribute - An integer specifying any attributes that describe this field.
value - The data to add to the field.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

countValues

public int countValues(int field)
Returns a value indicating the number of values currently contained within the field.

Parameters:
field - The field to check.
Returns:
An integer representing the number of values contained within the field.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

removeValue

public void removeValue(int field,
                        int index)
Removes a value from the specified field, given the index.

This method may invalidate the remaining data within the field, since the data is re-indexed once the value is removed.

Parameters:
field - The field from which to remove the value.
index - The index of the value within the field.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

getAttributes

public int getAttributes(int field,
                         int index)
Returns the attributes associated with a specified data value.

Parameters:
field - The field from which to return the attributes.
index - The index of the value within the field.
Returns:
An integer representing the attributes returned.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

addToCategory

public void addToCategory(String category)
                   throws PIMException
Adds a category to this item.

Use the getCategories() method to return all valid categories associated with the list that contains this item. If an invalid category is specified, a PIMException is thrown. If the specified category is already associated with this item, the operation will be considered a success.

Parameters:
category - A string representing the name of the category.
Throws:
PIMException - Thrown if the specified category is invalid or if the maximum number of categories has already been exceeded.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

removeFromCategory

public void removeFromCategory(String category)
Removes a category from this item.

Use the getCategories() method to return all valid categories associated with the list that contains this item. If an invalid category is specified, a PIMException is thrown. If the specified category is already associated with this item, the operation will be considered a success.

Parameters:
category - A string representing the name of the category.
Throws:
PIMException - Thrown if the specified category is invalid or if the maximum number of categories has already been exceeded.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

getCategories

public String[] getCategories()
Returns the names of all categories associated with this item.

If no categories are specified, a zero-length string array is returned.

Returns:
An array of strings.
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

maxCategories

public int maxCategories()
Returns the maximum number of categories that this item can be assigned to.

Returns:
An integer representing the maximum number of categories.
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

setBinary

public void setBinary(int field,
                      int index,
                      int attributes,
                      byte[] value,
                      int offset,
                      int length)
Sets an existing binary value in a field.

The method PIMList.isSupportedField(int) should be invoked before this method is called in order to ensure that the field exists.

Parameters:
field - The field in which the value exists.
index - The index of the value to change.
attributes - A byte array containing information about this field. Attributes can contain hints about the underlying implementation of the data.
value - A byte array containing new value to set.
offset - The offset of the data within the array.
length - The length (the number of bytes to read, starting from the beginning of the array) of the data within the array.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

setBoolean

public void setBoolean(int field,
                       int index,
                       int attributes,
                       boolean value)
Sets an existing boolean value in a field.

The method PIMList.isSupportedField(int) should be invoked before this method is called in order to ensure that the field exists.

Parameters:
field - The field in which the value exists.
index - The index of the value to change.
attributes - A byte array containing information about this field. Attributes can contain hints about the underlying implementation of the data.
value - The new value.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

setDate

public void setDate(int field,
                    int index,
                    int attributes,
                    long value)
Sets an existing date value in a field.

The method PIMList.isSupportedField(int) should be invoked before this method is called in order to ensure that the field exists.

In the event of a platform data restrictions, data will be rounded down.

Parameters:
field - The field in which the value exists.
index - The index of the value to change.
attributes - A byte array containing information about this field. Attributes can contain hints about the underlying implementation of the data.
value - The new value.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

setInt

public void setInt(int field,
                   int index,
                   int attributes,
                   int value)
Sets an existing integer value in a field.

The method PIMList.isSupportedField(int) should be invoked before this method is called in order to ensure that the field exists.

Parameters:
field - The field in which the value exists.
index - The index of the value to change.
attributes - A byte array containing information about this field. Attributes can contain hints about the underlying implementation of the data.
value - The new value.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

setString

public void setString(int field,
                      int index,
                      int attributes,
                      String value)
Sets an existing string value in a field.

The method PIMList.isSupportedField(int) should be invoked before this method is called in order to ensure that the field exists.

Parameters:
field - The field in which the value exists.
index - The index of the value to change.
attributes - A byte array containing information about this field. Attributes can contain hints about the underlying implementation of the data.
value - The new value.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.

setStringArray

public void setStringArray(int field,
                           int index,
                           int attributes,
                           String[] value)
Sets an existing string array value in a field.

The method PIMList.isSupportedField(int) should be invoked before this method is called in order to ensure that the field exists.

Not all elements in the array are required to be supported by the item. If a String is provided at an array index that is not supported by this item, that value is silently discarded.

Parameters:
field - The field in which the value exists.
index - The index of the value to change.
attributes - A byte array containing information about this field. Attributes can contain hints about the underlying implementation of the data.
value - The new value.
Since:
JDE 3.6
Category:
Signed: This element is only accessible by signed clients. If you intend to use this element, please contact RIM to establish the necessary agreements that will allow you to have your COD files signed. Signing is only required for use on the device, development under the JDE can occur without signing the CODs.


Copyright 1999-2002 Research In Motion Limited. 295 Phillip Street, Waterloo, Ontario, Canada, N2L 3W8. All Rights Reserved.
Copyright 1993-2000 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California, 94303, U.S.A. All Rights Reserved.
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.