Project

General

Profile

Download (1002 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.description;
11

    
12
import org.eclipse.swt.widgets.Composite;
13

    
14
import eu.etaxonomy.cdm.model.description.TaxonDescription;
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 DescriptionGroupComposite extends GroupComposite {
24

    
25
	private TaxonDescription description;
26
	
27
	public DescriptionGroupComposite(Composite parent, AbstractTaxonEditor editor,
28
			TaxonDescription description) {
29
		
30
		super(editor, parent);
31
		
32
		this.description = description;
33
	}
34
	
35
	public TaxonDescription getDescription() {
36
		return description;
37
	}
38
}
(4-4/13)