模块  java.desktop
软件包  javax.swing

Interface JComboBox.KeySelectionManager

  • Enclosing class:
    JComboBox < E >

    public static interface JComboBox.KeySelectionManager
    定义KeySelectionManager的接口。 要获得KeySelectionManager资格,该类需要实现识别给定字符和组合框数据模型的列表索引的方法。
    • 方法详细信息

      • selectionForKey

        int selectionForKey​(char aKey,
                            ComboBoxModel<?> aModel)
        给定aKey和模型,返回应该被选中的行。 如果未找到匹配则返回-1。
        参数
        aKey - char值,通常表示按下的键盘键
        aModel - ComboBoxModel - 组件的数据模型,包含可选项列表
        结果
        an int equal to the selected row, where 0 is the first item and -1 is none.