1 /*
2 * Created on 2005-maj-19
3 */
4 package test;
5
6 import javax.swing.JPanel;
7
8 /***
9 * @author redsolo
10 */
11 public class ThumbnailPanel extends JPanel
12 {
13
14 /***
15 * This is the default constructor
16 */
17 public ThumbnailPanel() {
18 super();
19 initialize();
20 }
21 /***
22 * This method initializes this
23 *
24 * @return void
25 */
26 private void initialize() {
27 this.setSize(300,200);
28 }
29 }