Package net.rim.device.api.ui.component.table

Examples of net.rim.device.api.ui.component.table.TableModelChangeEvent


        /**
         * Force the table to refresh the listed elements
         */
        public void refresh() {
            notifyListeners(new TableModelChangeEvent(
                    TableModelChangeEvent.COLUMN_UPDATED, this, -1, 0));
        }
View Full Code Here


        /**
         * Notifies the view that the table data has been updated.
         */
        public void refresh() {
            notifyListeners(new TableModelChangeEvent(
                    TableModelChangeEvent.COLUMN_UPDATED, this, -1, 0));
        }
View Full Code Here

         *            The row to insert
         */
        public void swapRow(final int index, final Object row) {
            PhoneLogsDemo.this._phoneLogs.swapCall((CallLog) row, index,
                    _folder);
            notifyListeners(new TableModelChangeEvent(
                    TableModelChangeEvent.ROW_UPDATED, this, index, -1));
        }
View Full Code Here

TOP

Related Classes of net.rim.device.api.ui.component.table.TableModelChangeEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.