Project

General

Profile

« Previous | Next » 

Revision 7fcb1960

Added by Patrick Plitzner almost 6 years ago

ref #7362 Add "Load Details" button

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/view/webimport/termimport/GfBioTerminologyImportComposite.java
42 42
    private Text txtLabel;
43 43
    private Text txtUri;
44 44
    private Text txtDescription;
45
    private Button btnLoadDetails;
45 46

  
46 47
    public GfBioTerminologyImportComposite(Composite parent, int style) {
47 48
        super(parent, style);
......
75 76
        composite_1 = new Composite(composite_2, SWT.NONE);
76 77
        composite_1.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
77 78
        composite_1.setLayout(new GridLayout(2, false));
79
        new Label(composite_1, SWT.NONE);
80

  
81
        btnLoadDetails = new Button(composite_1, SWT.NONE);
82
        btnLoadDetails.setLayoutData(new GridData(SWT.RIGHT, SWT.CENTER, false, false, 1, 1));
83
        btnLoadDetails.setText("Load Details");
78 84

  
79 85
        lblNewLabel = new Label(composite_1, SWT.NONE);
80 86
        lblNewLabel.setLayoutData(new GridData(SWT.RIGHT, SWT.CENTER, false, false, 1, 1));
......
121 127
    public Text getLblLabel() {
122 128
        return txtLabel;
123 129
    }
130
    public Button getBtnLoadDetails() {
131
        return btnLoadDetails;
132
    }
124 133
}

Also available in: Unified diff