⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 valuechoice.java

📁 This is a resource based on j2me embedded,if you dont understand,you can connection with me .
💻 JAVA
字号:
package com.sun.midp.appmanager;import java.util.Vector;/** *  Interfase represente the set of pairs of ID and label. *  One entity id market as selected. *  It can be used to represent the data for exclusive *  option buttons where each option has an ID. */interface ValueChoice {    /**     * Returns the ID of the selected item.     *     * @return ID of selected element     */    int getSelectedID();    /**     * Returns ID of specified item.     * @param index item index     * @return item ID     */    int getID(int index);    /**     * Returns label of specified choice items.     * @param index item index     * @return label     */    String getLabel(int index);    /**     * Returns count of items     * @return count     */    int getCount();    /**     * Returns choice title.     * @return title     */    String getTitle();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -