Project

General

Profile

« Previous | Next » 

Revision 3470949e

Added by Katja Luther about 3 years ago

fix #9545: remove external link type

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/section/common/ExternalLinksSection.java
30 30

  
31 31
    private String emptySectionString = "No external link yet.";
32 32

  
33
    private boolean isAdvanced = true;
33
    private boolean isShowDescription = true;
34 34

  
35 35

  
36 36

  
......
54 54
    public ExternalLinksSection(CdmFormFactory cdmFormFactory, ConversationHolder conversation,
55 55
            ICdmFormElement parentElement, boolean isAdvanced, String string, int style) {
56 56
        super(cdmFormFactory, conversation, parentElement, string, style);
57
        this.isAdvanced = isAdvanced;
57
        this.isShowDescription = isAdvanced;
58 58
    }
59 59

  
60 60

  
......
163 163

  
164 164

  
165 165
    public boolean isAdvanced() {
166
        return isAdvanced;
166
        return isShowDescription;
167 167
    }
168 168

  
169 169

  
170 170
    public void setAdvanced(boolean isAdvanced) {
171
        this.isAdvanced = isAdvanced;
171
        this.isShowDescription = isAdvanced;
172 172
    }
173 173

  
174 174
}

Also available in: Unified diff