InsetsPanelpublic class InsetsPanel extends Panel
Fields Summary |
---|
protected Insets | insets |
Constructors Summary |
---|
public InsetsPanel()
insets = new Insets(0, 0, 0, 0);
| public InsetsPanel(Insets insets1)
insets = new Insets(0, 0, 0, 0);
insets = insets1;
| public InsetsPanel(LayoutManager layoutmanager)
super(layoutmanager);
insets = new Insets(0, 0, 0, 0);
|
|