Here you can find the source of setMinimumWidth(JComponent component, int minWidth)
public static void setMinimumWidth(JComponent component, int minWidth)
//package com.java2s; //License from project: Apache License import java.awt.Dimension; import javax.swing.JComponent; public class Main { public static void setMinimumWidth(JComponent component, int minWidth) { Dimension dim = component.getMinimumSize(); dim = new Dimension(minWidth, dim.height); component.setMinimumSize(dim);/*from w w w .j ava2s. co m*/ } }