Uses of Class
javax.swing.JList
-
Packages that use JList 软件包 描述 javax.swing 提供一组“轻量级”(全Java语言)组件,这些组件在所有平台上尽可能地工作。javax.swing.plaf 提供一个接口和许多抽象类,Swing使用它们来提供其可插入的外观功能。javax.swing.plaf.basic 提供根据Basic外观构建的用户界面对象。javax.swing.plaf.metal 提供根据Java外观(曾代号为 Metal )构建的用户界面对象,这是默认的外观。javax.swing.plaf.multi 提供组合两种或多种外观的用户界面对象。 -
-
Uses of JList in javax.swing
Methods in javax.swing with parameters of type JList 变量和类型 方法 描述 Component
ListCellRenderer. getListCellRendererComponent(JList<? extends E> list, E value, int index, boolean isSelected, boolean cellHasFocus)
返回已配置为显示指定值的组件。Constructors in javax.swing with parameters of type JList 构造器 描述 AccessibleJListChild(JList<E> parent, int indexInParent)
构造一个AccessibleJListChild
。 -
Uses of JList in javax.swing.plaf
Methods in javax.swing.plaf with parameters of type JList 变量和类型 方法 描述 abstract Rectangle
ListUI. getCellBounds(JList<?> list, int index1, int index2)
返回给定列表坐标系中的边界矩形,用于由两个索引指定的单元格范围。abstract Point
ListUI. indexToLocation(JList<?> list, int index)
返回列表坐标系中指定项的给定JList
中的原点。abstract int
ListUI. locationToIndex(JList<?> list, Point location)
返回最接近列表坐标系中给定位置的指定JList
中的单元JList
。 -
Uses of JList in javax.swing.plaf.basic
Fields in javax.swing.plaf.basic declared as JList 变量和类型 字段 描述 protected JList<Object>
BasicComboPopup. list
此受保护字段是特定于实现的。protected JList<Object>
BasicListUI. list
JList
的实例。protected JList<Object>
BasicComboBoxUI. listBox
此列表用于在组合框中绘制当前项目。Methods in javax.swing.plaf.basic that return JList 变量和类型 方法 描述 protected JList<Object>
BasicComboPopup. createList()
创建弹出窗口中使用的JList以显示组合框模型中的项目。JList<Object>
BasicComboPopup. getList()
ComboPopup.getList()的实现。JList<Object>
ComboPopup. getList()
返回用于在组合框中绘制项目的列表。Methods in javax.swing.plaf.basic with parameters of type JList 变量和类型 方法 描述 protected MouseListener
BasicFileChooserUI. createDoubleClickListener(JFileChooser fc, JList<?> list)
创建双击侦听器。int
BasicListUI. locationToIndex(JList<?> list, Point location)
返回最接近列表坐标系中给定位置的指定JList
中的单元JList
。Constructors in javax.swing.plaf.basic with parameters of type JList 构造器 描述 DoubleClickListener(JList<?> list)
构成一个DoubleClickListener
。 -
Uses of JList in javax.swing.plaf.metal
Fields in javax.swing.plaf.metal declared as JList 变量和类型 字段 描述 protected JList<Object>
MetalComboBoxButton. listBox
JList
的实例。Constructors in javax.swing.plaf.metal with parameters of type JList 构造器 描述 MetalComboBoxButton(JComboBox<Object> cb, Icon i, boolean onlyIcon, CellRendererPane pane, JList<Object> list)
构造一个MetalComboBoxButton
的新实例。MetalComboBoxButton(JComboBox<Object> cb, Icon i, CellRendererPane pane, JList<Object> list)
构造一个MetalComboBoxButton
的新实例。SingleClickListener(JList<?> list)
已过时。构造一个SingleClickListener
的实例。 -
Uses of JList in javax.swing.plaf.multi
Methods in javax.swing.plaf.multi with parameters of type JList 变量和类型 方法 描述 Rectangle
MultiListUI. getCellBounds(JList<?> a, int b, int c)
在由此对象处理的每个UI上调用getCellBounds
方法。Point
MultiListUI. indexToLocation(JList<?> a, int b)
在由此对象处理的每个UI上调用indexToLocation
方法。int
MultiListUI. locationToIndex(JList<?> a, Point b)
在由此对象处理的每个UI上调用locationToIndex
方法。
-