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