public void appendTextToDescription(String text) {
descriptionTextPane.setText(descriptionTextPane.getText() + text);
}
private void fillCombosAndChanges() throws ConnectionFailedException {
DefaultValues defaultValues = ApplicationModel.getDefaultValues();
if (defaultValues == null) {
defaultValues = new DefaultValues();
}
FormUtils.fillComboBox(componentComboBoxModel, gateway.retrieveComponents(), defaultValues.getComponent(), true);
FormUtils.fillComboBox(priorityComboBoxModel, gateway.retrievePriorities(), defaultValues.getPriority(), true);
FormUtils.fillComboBox(typeComboBoxModel, gateway.retrieveTypes(), defaultValues.getType(), true);
FormUtils.fillComboBox(milestoneComboBoxModel, gateway.retrieveMilestones(), defaultValues.getMilestone(), true);
FormUtils.fillComboBox(versionComboBoxModel, gateway.retrieveVersions(), defaultValues.getVersion(), true);
FormUtils.fillComboBox(resolutionsComboBoxModel, gateway.retrieveResolutions(), null, true);
}