Here you can find the source of setSMPSizes(JComponent comp, Dimension d)
public static final void setSMPSizes(JComponent comp, Dimension d)
//package com.java2s; //License from project: Open Source License import java.awt.Dimension; import javax.swing.JComponent; public class Main { public static final void setSMPSizes(JComponent comp, Dimension d) { comp.setSize(d);/*from w ww. j a v a2 s . com*/ comp.setMinimumSize(d); comp.setPreferredSize(d); } }