public CCCreateStudyItemPanel(String itemName, String thresholdName, int thresholdIndex) {
myThresholdName = thresholdName;
myItemName = itemName;
- myNameField.setText(itemName + thresholdIndex);
+ int newIndex = thresholdIndex + 1;
+ myNameField.setText(itemName + newIndex);
add(myPanel, BorderLayout.CENTER);
}
group.add(myAfterButton);
myBeforeButton.setText("before " + postfix);
myAfterButton.setText("after " + postfix);
- myBeforeButton.setSelected(true);
+ myAfterButton.setSelected(true);
}
public int getIndexDelta() {