MyCanvaspublic class MyCanvas extends JLabel Dummy Canvas class, to represent the real main part of an application *
Just subclasses JLabel. |
Fields Summary |
---|
protected int | width | protected int | height | protected int | pad |
Constructors Summary |
---|
MyCanvas(int w, int h)
this("", w, h);
| MyCanvas(String l, int w, int h)
super(l, JLabel.CENTER);
width = w; height = h;
| MyCanvas(String l, int w, int h, Color c)
this(l, w, h);
setBackground(c);
|
Methods Summary |
---|
public java.awt.Dimension | getPreferredSize()
return new Dimension(width+pad, height+pad);
|
|