074a8982fbf185a12518bd52b2010f67c01fc049
[taxeditor.git] / taxeditor-editor / src / main / java / eu / etaxonomy / taxeditor / editor / name / ConceptGroup.java
1 /**
2 * Copyright (C) 2007 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
10 package eu.etaxonomy.taxeditor.editor.name;
11
12 import eu.etaxonomy.cdm.model.common.CdmBase;
13 import eu.etaxonomy.cdm.model.taxon.Taxon;
14
15 /**
16 * <p>ConceptGroup class.</p>
17 *
18 * @author p.ciardelli
19 * @created 21.01.2009
20 * @version 1.0
21 */
22 public class ConceptGroup extends AbstractGroup<Taxon> {
23
24 /**
25 * <p>Constructor for ConceptGroup.</p>
26 *
27 * @param editor a {@link eu.etaxonomy.taxeditor.editor.name.TaxonNameEditor} object.
28 */
29 public ConceptGroup(TaxonNameEditor editor) {
30 super(editor);
31 }
32
33 /** {@inheritDoc} */
34 @Override
35 public void redraw() {
36 // TODO Auto-generated method stub
37
38 }
39
40 /**
41 * <p>onComplete</p>
42 *
43 * @return a boolean.
44 */
45 public boolean onComplete() {
46 // TODO Auto-generated method stub
47 return false;
48 }
49
50 }