- java.lang.Object
 -  
      
- javax.swing.plaf.ComponentUI
 -  
        
- javax.swing.plaf.OptionPaneUI
 
 
 
-  
       
- 已知直接子类:
 -  
         
BasicOptionPaneUI,MultiOptionPaneUI 
public abstract class OptionPaneUI extends ComponentUI
JOptionPane的可插入外观界面。 
-  
        
       
-  
             
构造方法摘要
构造方法 构造器 描述 OptionPaneUI() 
-  
             
方法摘要
所有方法 实例方法 抽象方法 变量和类型 方法 描述 abstract booleancontainsCustomComponents(JOptionPane op)如果用户为选项或消息提供了Component实例,则返回true。abstract voidselectInitialValue(JOptionPane op)请求表示默认值的组件具有焦点。-  
               
声明方法的类 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包含用户创建的Components 
 
 -  
 
 -