Project

General

Profile

Download (930 Bytes) Statistics
| Branch: | Tag: | Revision:
1
// $Id$
2
/**
3
* Copyright (C) 2007 EDIT
4
* European Distributed Institute of Taxonomy 
5
* http://www.e-taxonomy.eu
6
* 
7
* The contents of this file are subject to the Mozilla Public License Version 1.1
8
* See LICENSE.TXT at the top of this package for the full license terms.
9
*/
10

    
11
package eu.etaxonomy.taxeditor.editor.images;
12

    
13
import org.eclipse.swt.SWT;
14
import org.eclipse.swt.graphics.Color;
15
import org.eclipse.swt.widgets.Composite;
16

    
17
import eu.etaxonomy.taxeditor.editor.AbstractTaxonEditor;
18
import eu.etaxonomy.taxeditor.editor.GroupComposite;
19

    
20
/**
21
 * @author p.ciardelli
22
 * @created 30.03.2009
23
 * @version 1.0
24
 */
25
public class ImagesGroupComposite extends GroupComposite {
26

    
27
	public ImagesGroupComposite(Composite parent, AbstractTaxonEditor editor) {
28
		super(editor, parent);
29
	
30
		Color groupBackgroundColor = getDisplay().getSystemColor(SWT.COLOR_WHITE);
31
		setBackground(groupBackgroundColor);
32
	}
33
}
(3-3/5)