Package org.trzcinka.intellitrac.dto

Examples of org.trzcinka.intellitrac.dto.DefaultValues


  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);
  }
View Full Code Here

TOP

Related Classes of org.trzcinka.intellitrac.dto.DefaultValues

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.