本文整理汇总了Java中org.jdesktop.swingx.plaf.TitledPanelUI类的典型用法代码示例。如果您正苦于以下问题:Java TitledPanelUI类的具体用法?Java TitledPanelUI怎么用?Java TitledPanelUI使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
TitledPanelUI类属于org.jdesktop.swingx.plaf包,在下文中一共展示了TitledPanelUI类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getUI
import org.jdesktop.swingx.plaf.TitledPanelUI; //导入依赖的package包/类
/**
* Returns the look and feel (L&F) object that renders this component.
*
* @return the TitledPanelUI object that renders this component
*/
@Override
public TitledPanelUI getUI() {
return (TitledPanelUI) ui;
}
示例2: setUI
import org.jdesktop.swingx.plaf.TitledPanelUI; //导入依赖的package包/类
/**
* Sets the look and feel (L&F) object that renders this component.
*
* @param ui
* the TitledPanelUI L&F object
* @see javax.swing.UIDefaults#getUI
* @beaninfo bound: true
* hidden: true attribute: visualUpdate true
* description: The UI object that implements the Component's LookAndFeel.
*/
public void setUI(TitledPanelUI ui) {
super.setUI(ui);
}
示例3: updateUI
import org.jdesktop.swingx.plaf.TitledPanelUI; //导入依赖的package包/类
/**
* Notification from the <code>UIManager</code> that the L&F has changed.
* Replaces the current UI object with the latest version from the
* <code>UIManager</code>.
*
* @see javax.swing.JComponent#updateUI
*/
@Override
public void updateUI() {
setUI((TitledPanelUI) LookAndFeelAddons
.getUI(this, TitledPanelUI.class));
}
示例4: getUI
import org.jdesktop.swingx.plaf.TitledPanelUI; //导入依赖的package包/类
/**
* Returns the look and feel (L&F) object that renders this component.
*
* @return the TitledPanelUI object that renders this component
* @since 1.4
*/
@Override
public TitledPanelUI getUI() {
return (TitledPanelUI) ui;
}
示例5: setUI
import org.jdesktop.swingx.plaf.TitledPanelUI; //导入依赖的package包/类
/**
* Sets the look and feel (L&F) object that renders this component.
*
* @param ui
* the TitledPanelUI L&F object
* @see javax.swing.UIDefaults#getUI
* @since 1.4
* @beaninfo bound: true hidden: true attribute: visualUpdate true
* description: The UI object that implements the Component's
* LookAndFeel.
*/
public void setUI(TitledPanelUI ui) {
super.setUI(ui);
}