Java JFrame setJFrameAlwaysOnTop(JFrame frame, boolean newValue)

Here you can find the source of setJFrameAlwaysOnTop(JFrame frame, boolean newValue)

Description

set J Frame Always On Top

License

Open Source License

Declaration

public static void setJFrameAlwaysOnTop(JFrame frame, boolean newValue) 

Method Source Code

//package com.java2s;
/*/*ww w.  j  ava 2 s  .  c  o  m*/
 * MiscUtil.java
 * miscellaneous utilities
 * Copyright (C) 2006 by Institute for Systems Biology,
 * Seattle, Washington, USA.  All rights reserved.
 *
 * This source code is distributed under the GNU Lesser
 * General Public License, the text of which is available at:
 *   http://www.gnu.org/copyleft/lesser.html
 */

import javax.swing.JFrame;

public class Main {
    public static void setJFrameAlwaysOnTop(JFrame frame, boolean newValue) {
        frame.setAlwaysOnTop(newValue);
    }
}

Related

  1. setFrameBottomRight(final JFrame frame)
  2. setFramePositon(JFrame inTargetFrame)
  3. setFrameTitle(JFrame frame, File file)
  4. setGeneralParameters(final JFrame window)
  5. setInfo(String info, JFrame root)
  6. setMainWindowLocation(JFrame jfrm, String strPropertiesFilePath, String strPropertiesFileName)
  7. setPanel(JPanel parent, JPanel child, JFrame f)
  8. setPersistentExtendedStateMask(JFrame frame, int persistentExtendedStateMask)
  9. setWindowListenerDispose(JFrame frame)