Did some code cleanup. Removed obsolete and deprecated classes.
[taxeditor.git] / taxeditor-store / src / main / java / eu / etaxonomy / taxeditor / preference / menu / DistributionStatusMenuPreferences.java
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.preference.menu;
12
13 import org.eclipse.ui.IWorkbenchPreferencePage;
14
15 import eu.etaxonomy.cdm.model.description.PresenceAbsenceTermBase;
16 import eu.etaxonomy.taxeditor.store.VocabularyStore;
17
18 /**
19 * @author n.hoffmann
20 * @created 25.06.2009
21 * @version 1.0
22 */
23 public class DistributionStatusMenuPreferences extends AbstractMenuPreferences<PresenceAbsenceTermBase<PresenceAbsenceTermBase<?>>> implements
24 IWorkbenchPreferencePage {
25
26
27 /**
28 * @param initialVocabulary
29 * @param preferedTerms
30 * @param title
31 * @param description
32 */
33 public DistributionStatusMenuPreferences() {
34 super(VocabularyStore.getPresenceAbsenceTerms(),
35 "Distribution Status Preferences",
36 "Choose which distribution states should be shown.",
37 false);
38 }
39
40 }