- java.lang.Object
-
- javax.swing.plaf.ComponentUI
-
- javax.swing.plaf.OptionPaneUI
-
- 已知直接子类:
-
BasicOptionPaneUI
,MultiOptionPaneUI
public abstract class OptionPaneUI extends ComponentUI
JOptionPane可插拔的外观和界面。
-
-
构造方法摘要
构造方法 Constructor 描述 OptionPaneUI()
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 abstract boolean
containsCustomComponents(JOptionPane op)
如果用户为选项或消息提供了Component的实例,则返回true。abstract void
selectInitialValue(JOptionPane op)
请求表示默认值的组件具有焦点。-
Methods inherited from class javax.swing.plaf.ComponentUI
contains, createUI, getAccessibleChild, getAccessibleChildrenCount, getBaseline, getBaselineResizeBehavior, getMaximumSize, getMinimumSize, getPreferredSize, installUI, paint, uninstallUI, update
-
-
-
-
方法详细信息
-
selectInitialValue
public abstract void selectInitialValue(JOptionPane op)
请求表示默认值的组件具有焦点。- 参数
-
op
- aJOptionPane
-
containsCustomComponents
public abstract boolean containsCustomComponents(JOptionPane op)
如果用户为选项或消息提供了Component的实例,则返回true。- 参数
-
op
- aJOptionPane
- 结果
-
true
如果给定的JOptionPane
包含用户创建的Component
s
-
-