Java Window updateWindow(Window window)

Here you can find the source of updateWindow(Window window)

Description

update Window

License

Apache License

Declaration

public static void updateWindow(Window window) 

Method Source Code


//package com.java2s;
//License from project: Apache License 

import java.awt.Window;
import javax.swing.SwingUtilities;

public class Main {
    public static void updateWindow(Window window) {
        SwingUtilities.updateComponentTreeUI(window);
    }/*from   w  w w. ja v a2  s  . co m*/
}

Related

  1. show(final Container container, final boolean visible, Window appearOnLeftSide)
  2. show(JWindow window)
  3. showLater(final Window win)
  4. showMessageWindow(String message, JWindow parent)
  5. unmaskWindow(W window)