Here you can find the source of toFixedDim(JComponent c, int width, int height)
public static void toFixedDim(JComponent c, int width, int height)
//package com.java2s; //License from project: Apache License import java.awt.Dimension; import javax.swing.JComponent; public class Main { public static void toFixedDim(JComponent c, int width, int height) { Dimension dimension = new Dimension(width, height); c.setPreferredSize(dimension);/*from w ww . j a v a 2s. co m*/ c.setMaximumSize(dimension); c.setMinimumSize(dimension); } }