greaterthanequalButton.addActionListener(this);
comparatorButtonGroup.add(greaterthanequalButton);
JRadioButton lessthanequalButton = new JRadioButton("<=");
lessthanequalButton.setActionCommand(new Integer(SizeAssertion.LESSTHANEQUAL).toString());
lessthanequalButton.addActionListener(this);
comparatorButtonGroup.add(lessthanequalButton);
//Put the check boxes in a column in a panel
JPanel checkPanel = new JPanel();
checkPanel.setLayout(new GridLayout(0, 1));