Module  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.