Merge branch 'release/4.4.0'
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / key / polytomous / handler / AbstractPolytomousKeyNodeHandler.java
1 /**
2 * Copyright (C) 2016 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9 package eu.etaxonomy.taxeditor.editor.key.polytomous.handler;
10
11 import eu.etaxonomy.taxeditor.editor.key.polytomous.IPolytomousKeyEditorPage;
12 import eu.etaxonomy.taxeditor.operation.RemotingCdmHandler;
13
14 /**
15 * @author k.luther
16 * @date 24.11.2016
17 *
18 */
19 public abstract class AbstractPolytomousKeyNodeHandler extends RemotingCdmHandler {
20
21
22 IPolytomousKeyEditorPage editorPage;
23
24 /**
25 * @param label
26 */
27 public AbstractPolytomousKeyNodeHandler(String label) {
28 super(label);
29 // TODO Auto-generated constructor stub
30 }
31
32
33
34
35 }