Project

General

Profile

« Previous | Next » 

Revision 3be6ef3e

Added by Niels Hoffmann over 13 years ago

performed javacscript:fix and worked on documentation

View differences:

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
 * @author p.ciardelli
17
 * @created 21.01.2009
18
 * @version 1.0
19
 */
20
public class ConceptGroup extends AbstractGroup<Taxon> {
21

  
22
	public ConceptGroup(TaxonNameEditor editor) {
23
		super(editor);
24
	}
25
	
26
	@Override
27
	public void redraw() {
28
		// TODO Auto-generated method stub
29
		
30
	}
31

  
32
	public boolean onComplete() {
33
		// TODO Auto-generated method stub
34
		return false;
35
	}
36

  
37
}
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
}

Also available in: Unified diff