pb.addRow();
pb.addLabel(mLocalizer.msg("Classification", "Classification") + ':', cc.xy(2,pb.getRow()));
pb.add(mClassification, cc.xyw(4,pb.getRow(), pb.getColumnCount() - 3));
mUseAlarm = new JCheckBox(mLocalizer.msg("reminder", "Use reminder"));
pb.addRow();
pb.add(mUseAlarm, cc.xy(2,pb.getRow()));
SpinnerModel model = new SpinnerNumberModel(0, 0, 1440, 1);
mAlarmMinutes = new JSpinner(model);
JPanel panel = new JPanel(new BorderLayout());