> Im adding a number of labels to the JPanel -- is
> there a way to add them all on one line as opposed
> to:
>
> c.add(top1);
> c.add(top2); etc. etc.?
well you can do
c.add(top1); c.add(top2);
but basically no, you can't add them all together at the same time