Project

General

Profile

Download (948 Bytes) Statistics
| Branch: | Tag: | Revision:
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 org.eclipse.swt.widgets.Composite;
13

    
14
import eu.etaxonomy.cdm.model.name.HomotypicalGroup;
15
import eu.etaxonomy.taxeditor.editor.AbstractTaxonEditor;
16
import eu.etaxonomy.taxeditor.editor.GroupComposite;
17

    
18
/**
19
 * @author p.ciardelli
20
 * @created 13.01.2009
21
 * @version 1.0
22
 */
23
public class HomotypicalGroupComposite extends GroupComposite {
24

    
25
	private HomotypicalGroup group;
26
	
27
	public HomotypicalGroupComposite(AbstractTaxonEditor editor, Composite parent, HomotypicalGroup group) {
28
		
29
		super(editor, parent);
30
		
31
		this.group = group;
32
	}
33
	
34
	public HomotypicalGroup getGroup() {
35
		return group;
36
	}
37
}
(6-6/18)