Project

General

Profile

« Previous | Next » 

Revision 0e7b64fb

Added by Katja Luther about 3 years ago

ref #9549: adapt editor to secundum as originalsource and remove unused fields

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;
34

  
33 35

  
34 36

  
35 37
    /**
......
50 52
     * @param style
51 53
     */
52 54
    public ExternalLinksSection(CdmFormFactory cdmFormFactory, ConversationHolder conversation,
53
            ICdmFormElement parentElement, String string, int style) {
55
            ICdmFormElement parentElement, boolean isAdvanced, String string, int style) {
54 56
        super(cdmFormFactory, conversation, parentElement, string, style);
55

  
57
        this.isAdvanced = isAdvanced;
56 58
    }
57 59

  
58 60

  
......
159 161
       getLayoutComposite().layout();
160 162
    }
161 163

  
164

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

  
169

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

  
162 174
}

Also available in: Unified diff