Java JComponent Width setMaximumWidth(JComponent component, int width)

Here you can find the source of setMaximumWidth(JComponent component, int width)

Description

set Maximum Width

License

Open Source License

Declaration

public static void setMaximumWidth(JComponent component, int width) 

Method Source Code


//package com.java2s;
/*/*ww w  .ja va2s.  c o m*/
 * Copyright (c) 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015 David Berkman
 * 
 * This file is part of the SmallMind Code Project.
 * 
 * The SmallMind Code Project is free software, you can redistribute
 * it and/or modify it under the terms of GNU Affero General Public
 * License as published by the Free Software Foundation, either version 3
 * of the License, or (at your option) any later version.
 * 
 * The SmallMind Code Project 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 the GNU Affero General Public
 * License, along with the SmallMind Code Project. If not, see
 * <http://www.gnu.org/licenses/>.
 * 
 * Additional permission under the GNU Affero GPL version 3 section 7
 * ------------------------------------------------------------------
 * If you modify this Program, or any covered work, by linking or
 * combining it with other code, such other code is not for that reason
 * alone subject to any of the requirements of the GNU Affero GPL
 * version 3.
 */

import java.awt.Dimension;
import javax.swing.JComponent;

public class Main {
    public static void setMaximumWidth(JComponent component, int width) {

        component.setMaximumSize(new Dimension(width, (int) component.getMaximumSize().getHeight()));
    }
}

Related

  1. sameWidth(JComponent[] components, int width)
  2. setBoundsAndCenterHorizontally(JComponent component, int x, int y, int width, int height)
  3. setComponent3Width(JComponent c, int width)
  4. setComponentWidth(final JComponent component, final int width)
  5. setMaximumWidth(final JComponent component, final int width)
  6. setMaxWidth(JComponent comp, int width)
  7. setMinimumWidth(JComponent component, int minWidth)
  8. setMinimumWidth(JComponent component, int width)
  9. setPreferredWidth(final JComponent component, final int width)