import javax.swing.JFrame;
public class LabelTest {
	public static void main(String[] args) {
	LabelFrame labelFrame = new LabelFrame();
	labelFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); // terminate application
	  // upon closing of window
	labelFrame.setSize(275,180);
	labelFrame.setVisible(true);
}
}