Project

General

Profile

« Previous | Next » 

Revision c274b9cc

Added by Katja Luther over 4 years ago

ref #8677: smaller issues

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/dialog/configurator/DistributionAggregationWizardPage.java
240 240

  
241 241
        Label higherRankLabel = new Label(control, SWT.NULL);
242 242
        higherRankLabel.setText("Highest rank");
243

  
243 244
        comboHigherRank = new Combo(control, SWT.BORDER | SWT.READ_ONLY);
244 245
        updateHigherRankCombo();
245 246
        comboHigherRank.addListener(SWT.Selection, this);
......
309 310
        });
310 311
        Label areaLevelLabel = new Label(control, SWT.NULL);
311 312
        areaLevelLabel.setText("Area Level");
312
//        areaLevelLabel.setToolTipText("Selecting none would delete all existing aggregated distributions");
313
        areaLevelLabel.setToolTipText("Selecting the area level to which the distribution should be aggregated");
313 314
        comboAreaLevel = new Combo(control,  SWT.BORDER | SWT.READ_ONLY);
314 315
        List<NamedAreaLevel> namedAreaLevels = CdmStore.getTermManager().getAllTerms(TermType.NamedAreaLevel, null);
315 316
        for (NamedAreaLevel level: namedAreaLevels) {
......
375 376
        comboSourceModeSubAreaSuperArea.select(0);
376 377
        Label sourceTypeLabel = new Label(control, SWT.NULL);
377 378
        sourceTypeLabel.setText("Source type");
378

  
379
        sourceTypeLabel.setToolTipText("Type of sources that should added to the aggregated distribution");
379 380
        sourceTypeViewer = CheckboxTableViewer.newCheckList(control, SWT.BORDER | SWT.SINGLE);
380 381
        sourceTypeViewer.setContentProvider(new ArrayContentProvider());
381 382

  
......
406 407
        Label selectStatusLabel = new Label(control, SWT.NULL);
407 408
        selectStatusLabel.setText("Status order");
408 409
        comboStatusOrder = new Combo(control, SWT.PUSH );
409
        comboStatusOrder.add("Default - by vocabulary");
410
        comboStatusOrder.setData("Default - by vocabulary", null);
410
        comboStatusOrder.add("Default - by Presence Absence Term vocabulary");
411
        comboStatusOrder.setData("Default - by Presence Absence Term vocabulary", null);
411 412
        for (TermTree tree: CdmStore.getService(ITermTreeService.class).list(TermType.PresenceAbsenceTerm, null, 0, null,null)){
412 413
            comboStatusOrder.add(tree.getTitleCache());
413 414
            comboStatusOrder.setData(tree.getTitleCache(), tree);

Also available in: Unified diff