public class JCheckBoxRenderer extends RendererUtil implements Renderer {
public Container render(AbstractSwingMLModel aModel, Container aParent) {
JCheckBoxModel theModel = (JCheckBoxModel) aModel;
JCheckBoxComponent theCheckBox = new JCheckBoxComponent(theModel);
String theOrientation = theModel.getOrientation();
if (theOrientation != null) {
aParent.add(theCheckBox, theOrientation);
} else {