Java JComponent Size fixSize(JComponent... items)

Here you can find the source of fixSize(JComponent... items)

Description

fix Size

License

Open Source License

Declaration

public static void fixSize(JComponent... items) 

Method Source Code


//package com.java2s;
/*/*w ww  . ja va 2  s.c  o m*/
 *
 *     This file is part of antro, the line-level profiler for ant build scripts.
 *
 *     antro 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 3 of the License, or
 *     (at your option) any later version.
 *
 *     antro 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 antro.  If not, see <http://www.gnu.org/licenses/>.
 */

import javax.swing.*;

public class Main {
    public static void fixSize(JComponent... items) {
        for (JComponent item : items) {
            item.setMinimumSize(item.getPreferredSize());
            item.setMaximumSize(item.getPreferredSize());
            item.setSize(item.getPreferredSize());
        }
    }
}

Related

  1. equalizeSize(final JComponent... components)
  2. equalizeSizes(JComponent[] components)
  3. evenSizes(JComponent[] components)
  4. findCenterBounds(Dimension componentSize)
  5. fixSize(JComponent c, Dimension d)
  6. fixSize(T comp, int width)
  7. forceSize(JComponent component, int width, int height)
  8. freezeSize(JComponent c, Dimension s)
  9. getCentralLocation(Component sourceComp, Component comp, Dimension size)