Java 类javax.swing.plaf.DesktopPaneUI 实例源码
项目:j2se_for_android
文件:JDesktopPane.java
public DesktopPaneUI getUI() {
return (DesktopPaneUI) null;
}
项目:j2se_for_android
文件:JDesktopPane.java
public void setUI(DesktopPaneUI ui) {
super.setUI(ui);
}
项目:j2se_for_android
文件:JDesktopPane.java
public void updateUI() {
setUI((DesktopPaneUI) UIManager.getUI(this));
}
项目:javify
文件:JDesktopPane.java
/**
* This method restores the UI used with the JDesktopPane to the default.
*/
public void updateUI()
{
setUI((DesktopPaneUI) UIManager.getUI(this));
}
项目:jvm-stm
文件:JDesktopPane.java
/**
* This method restores the UI used with the JDesktopPane to the default.
*/
public void updateUI()
{
setUI((DesktopPaneUI) UIManager.getUI(this));
}
项目:cn1
文件:JDesktopPane.java
/**
* Resets UI object with the default object from <code>UIManager</code>
*/
@Override
public void updateUI() {
setUI((DesktopPaneUI) UIManager.getUI(this));
}
项目:JamVM-PH
文件:JDesktopPane.java
/**
* This method restores the UI used with the JDesktopPane to the default.
*/
public void updateUI()
{
setUI((DesktopPaneUI) UIManager.getUI(this));
}
项目:classpath
文件:JDesktopPane.java
/**
* This method restores the UI used with the JDesktopPane to the default.
*/
public void updateUI()
{
setUI((DesktopPaneUI) UIManager.getUI(this));
}
项目:freeVM
文件:JDesktopPane.java
/**
* Resets UI object with the default object from <code>UIManager</code>
*/
@Override
public void updateUI() {
setUI((DesktopPaneUI) UIManager.getUI(this));
}
项目:freeVM
文件:JDesktopPane.java
/**
* Resets UI object with the default object from <code>UIManager</code>
*/
@Override
public void updateUI() {
setUI((DesktopPaneUI) UIManager.getUI(this));
}
项目:javify
文件:JDesktopPane.java
/**
* This method returns the UI used with the JDesktopPane.
*
* @return The UI used with the JDesktopPane.
*/
public DesktopPaneUI getUI()
{
return (DesktopPaneUI) ui;
}
项目:javify
文件:JDesktopPane.java
/**
* This method sets the UI used with the JDesktopPane.
*
* @param ui The UI to use with the JDesktopPane.
*/
public void setUI(DesktopPaneUI ui)
{
super.setUI(ui);
}
项目:jvm-stm
文件:JDesktopPane.java
/**
* This method returns the UI used with the JDesktopPane.
*
* @return The UI used with the JDesktopPane.
*/
public DesktopPaneUI getUI()
{
return (DesktopPaneUI) ui;
}
项目:jvm-stm
文件:JDesktopPane.java
/**
* This method sets the UI used with the JDesktopPane.
*
* @param ui The UI to use with the JDesktopPane.
*/
public void setUI(DesktopPaneUI ui)
{
super.setUI(ui);
}
项目:cn1
文件:JDesktopPane.java
/**
* Sets the UI object for this component.
*
* @param ui the UI object to set
*/
public void setUI(final DesktopPaneUI ui) {
// setUI() from super (JComponent) should always be called
super.setUI(ui);
}
项目:cn1
文件:JDesktopPane.java
/**
* Returns the UI object for this component.
*
* @return UI object for this component
*/
public DesktopPaneUI getUI() {
return (DesktopPaneUI) ui;
}
项目:JamVM-PH
文件:JDesktopPane.java
/**
* This method returns the UI used with the JDesktopPane.
*
* @return The UI used with the JDesktopPane.
*/
public DesktopPaneUI getUI()
{
return (DesktopPaneUI) ui;
}
项目:JamVM-PH
文件:JDesktopPane.java
/**
* This method sets the UI used with the JDesktopPane.
*
* @param ui The UI to use with the JDesktopPane.
*/
public void setUI(DesktopPaneUI ui)
{
super.setUI(ui);
}
项目:classpath
文件:JDesktopPane.java
/**
* This method returns the UI used with the JDesktopPane.
*
* @return The UI used with the JDesktopPane.
*/
public DesktopPaneUI getUI()
{
return (DesktopPaneUI) ui;
}
项目:classpath
文件:JDesktopPane.java
/**
* This method sets the UI used with the JDesktopPane.
*
* @param ui The UI to use with the JDesktopPane.
*/
public void setUI(DesktopPaneUI ui)
{
super.setUI(ui);
}
项目:freeVM
文件:JDesktopPane.java
/**
* Sets the UI object for this component.
*
* @param ui the UI object to set
*/
public void setUI(final DesktopPaneUI ui) {
// setUI() from super (JComponent) should always be called
super.setUI(ui);
}
项目:freeVM
文件:JDesktopPane.java
/**
* Returns the UI object for this component.
*
* @return UI object for this component
*/
public DesktopPaneUI getUI() {
return (DesktopPaneUI) ui;
}
项目:freeVM
文件:JDesktopPane.java
/**
* Sets the UI object for this component.
*
* @param ui the UI object to set
*/
public void setUI(final DesktopPaneUI ui) {
// setUI() from super (JComponent) should always be called
super.setUI(ui);
}
项目:freeVM
文件:JDesktopPane.java
/**
* Returns the UI object for this component.
*
* @return UI object for this component
*/
public DesktopPaneUI getUI() {
return (DesktopPaneUI) ui;
}