Project

General

Profile

« Previous | Next » 

Revision 093e7cd5

Added by Katja Luther almost 3 years ago

ref #8776, #9630: d&d from voc to tree and disable time period if fact is disabled

View differences:

eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/editor/definedterm/TermTransfer.java
12 12

  
13 13
import eu.etaxonomy.cdm.api.service.ITermService;
14 14
import eu.etaxonomy.cdm.model.term.DefinedTermBase;
15
import eu.etaxonomy.cdm.persistence.dto.TermDto;
15 16
import eu.etaxonomy.taxeditor.model.CdmObjectTransfer;
16 17
import eu.etaxonomy.taxeditor.store.CdmStore;
17 18

  
......
25 26
	private static TermTransfer instance = new TermTransfer();
26 27
	private static final String TYPE_NAME = "termElement-transfer-format";
27 28
	private static final int TYPEID = registerType(TYPE_NAME);
29
	private TermDto selection;
28 30

  
29 31
	public static synchronized TermTransfer getInstance(){
30 32
		return instance;
......
47 49
		return new String[] { TYPE_NAME };
48 50
	}
49 51

  
52
    public TermDto getSelection() {
53
        return selection;
54
    }
55

  
56
    public void setSelection(TermDto selection) {
57
        this.selection = selection;
58
    }
59

  
50 60
}

Also available in: Unified diff