Java JFrame maximizeJFrame(JFrame f)

Here you can find the source of maximizeJFrame(JFrame f)

Description

Maximizes a JFrame, just like the 'maximize window' button does.

License

Open Source License

Parameter

Parameter Description
f The frame to maximize.

Declaration

public static void maximizeJFrame(JFrame f) 

Method Source Code

//package com.java2s;
/*/*from   ww  w . j  a  v  a  2 s  .  c  o  m*/
 *  JMule - Java file sharing client
 *  Copyright (C) 2007-2008 JMule team ( jmule@jmule.org / http://jmule.org )
 *
 *  Any parts of this program derived from other projects, or contributed
 *  by third-party developers are copyrighted by their respective authors.
 *
 *  This program is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU General Public License
 *  as published by the Free Software Foundation; either version 2
 *  of the License, or (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 *
 */

import java.awt.Frame;

import javax.swing.JFrame;

public class Main {
    /**
     * Maximizes a JFrame, just like the 'maximize window' button does.
     * <p>
     * @param f     The frame to maximize.
     */
    public static void maximizeJFrame(JFrame f) {

        f.setExtendedState(Frame.MAXIMIZED_BOTH);
    }
}

Related

  1. locateForm(JFrame f, int x, int y, int w, int h)
  2. makeFullScreen(JFrame frame)
  3. makeShaped(final JFrame frame)
  4. makeTrans(JFrame frmDisks, float f)
  5. maxamiseWindow(JFrame window)
  6. maximizeWindow(JFrame window)
  7. maxIt(JFrame jFrame)
  8. messageDialog(String string, JFrame parentFrame)
  9. metalLookAndFeel(JFrame appFrame)