com.supermap.desktop.controls.utilities
类 JComboBoxUIUtilities
- java.lang.Object
-
- com.supermap.desktop.controls.utilities.JComboBoxUIUtilities
-
public class JComboBoxUIUtilities extends java.lang.Object
-
-
方法概要
所有方法 静态方法 具体方法 限定符和类型 方法和说明 static int
getItemIndex(javax.swing.JComboBox comboBox, java.lang.Object item)
获得对象在comboBox中对应的indexstatic void
updateItems(javax.swing.JComboBox<java.lang.String> comboBox, java.util.ArrayList<java.lang.String> items)
用指定的项集合更新目标ComboBox的项(仅限String类型)
-
-
-
方法详细资料
-
getItemIndex
public static int getItemIndex(javax.swing.JComboBox comboBox, java.lang.Object item)
获得对象在comboBox中对应的index- 参数:
comboBox
- 指定的ComboBox对象item
- 指定的项(支持显示内容,实际存的数据)- 返回:
- 对应的index值,不存在返回-1
-
updateItems
public static void updateItems(javax.swing.JComboBox<java.lang.String> comboBox, java.util.ArrayList<java.lang.String> items)
用指定的项集合更新目标ComboBox的项(仅限String类型)- 参数:
comboBox
- 要更新项的ComboBoxitems
- 更新的项集合
-
-