|
List of Free SCMAD Articles from uCertify.com |
|
|
Written by Roger Stuart
|
|
Page 12 of 12
The recordAdded() method is a method of the RecordListener interface. This method is called when a new record is added to a record store. The general syntax of this method is as follows: public void recordAdded(RecordStore recordstore, int recordid) Here, recordstore is the reference of... [read more..]
The recordChanged() method is a method of the RecordListener interface. This method is called when there is any modification in the record of a record store. The general syntax of this method is as follows: public void recordChanged(RecordStore recordstore, int recordid) Here, recordstore... [read more..]
The recordDeleted method is a method of the RecordListener interface. This method is called when a record is removed from a record store. The general syntax of this method is as follows: public void recordDeleted(RecordStore recordstore, int recordid) Here, recordstore is the reference of... [read more..]
JAD stands for Java Application Descriptor. The file contains attributes that are used by application management software to manage the life cycle of a MIDlet. It has certain mandatory as well as optional attributes. The attributes in a JAD file are represented in the following form:... [read more..]
|