Java JComponent Size freezeSize(JComponent c, Dimension s)

Here you can find the source of freezeSize(JComponent c, Dimension s)

Description

freeze Size

License

Open Source License

Declaration

static JComponent freezeSize(JComponent c, Dimension s) 

Method Source Code

//package com.java2s;
/* [{/*from w  ww .  j a v a2 s.  com*/
Copyright 2008 Nicolas Carranza <nicarran at gmail.com>
    
This file is part of jpen.
    
jpen is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License,
or (at your option) any later version.
    
jpen 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 Lesser General Public License for more details.
    
You should have received a copy of the GNU Lesser General Public License
along with jpen.  If not, see <http://www.gnu.org/licenses/>.
}] */

import java.awt.Dimension;

import javax.swing.JComponent;

public class Main {
    static JComponent freezeSize(JComponent c, Dimension s) {
        c.validate();
        c.setMinimumSize(s);
        c.setMaximumSize(s);
        c.setPreferredSize(s);
        return c;
    }
}

Related

  1. findCenterBounds(Dimension componentSize)
  2. fixSize(JComponent c, Dimension d)
  3. fixSize(JComponent... items)
  4. fixSize(T comp, int width)
  5. forceSize(JComponent component, int width, int height)
  6. getCentralLocation(Component sourceComp, Component comp, Dimension size)
  7. getComponentOfSameSize(final JComponent c)
  8. getLocalScreenSize(Component invoker)
  9. getMaxSize(JComponent[] components)