* The Background colour.
* @return The created <code>CompoundGraphic</code>
*/
public static CompoundGraphic newCompoundGraphic(String name, int frameWeight,
String caption, Color bc) {
CompoundGraphic gf = newCompoundGraphic(name);
FrameWeight.set(gf, frameWeight);
Caption.set(gf, caption);
gf.setOpaque(true);
// gf.setLayout(null);
return gf;
}