if (!type.getLeftLabel().equals("")) {
JLabel label = new JLabel(type.getLeftLabel());
label.setHorizontalAlignment(JLabel.CENTER);
answerPanel.add(label, bag.WEST().inset(0, 0, 0, 12));
bag.inset(0);
}
JPanel itemPane = new JPanel(new GridLayout(rows, cols, 6, 6));
for (Choice choice : type.getChoices()) {
JRadioButton button = new JRadioButton(choice.getLabel());