home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 July & August
/
Pcwk78a98.iso
/
Internet
/
Javadraw
/
DATA.Z
/
ColumnOfBoxes.java
< prev
next >
Wrap
Text File
|
1997-04-14
|
315b
|
23 lines
import java.awt.*;
import java.awt.event.*;
public class ColumnOfBoxes extends Panel
{
public Insets getInsets()
{
return new Insets(100, 0, 100, 0);
}
ColumnOfBoxes(Color c, int n)
{
setLayout(new GridLayout(0, 1, 2, 2));
for(int i = 0; i < n; i++) {
add(new Box(c));
}
}
}