本文整理匯總了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);
}