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

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


        add(new LabelField("BlackBerry Devices", Field.FIELD_HCENTER));
        add(new SeparatorField());

        // Initialize the model if it has not yet been loaded
        _tableModel =
                new SortedTableModel(StringComparator.getInstance(true), 2);

        // Populate the list
        while (deviceData.hasMoreTokens()) {
            final String modelNumber = deviceData.nextToken().trim();
View Full Code Here

TOP

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

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.