Project

General

Profile

Download (2.89 KB) 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.preference;
12

    
13
/**
14
 * <p>IPreferenceKeys interface.</p>
15
 *
16
 * @author n.hoffmann
17
 * @created Jul 12, 2010
18
 * @version 1.0
19
 */
20
public interface IPreferenceKeys {
21
	/**
22
	 * 
23
	 */
24
	public static final String PREFERRED_NOMENCLATURAL_CODE_KEY = "code";
25
	
26
	/**
27
	 * 
28
	 */
29
	public static final String TAXON_SERVICE_CONFIGURATOR_TAXA = "taxonServiceConfigurator.doTaxa";
30
	
31
	/**
32
	 * 
33
	 */
34
	public static final String TAXON_SERVICE_CONFIGURATOR_SYNONYMS = "taxonServiceConfigurator.doSynonyms";
35
	
36
	/**
37
	 * 
38
	 */
39
	public static final String TAXON_SERVICE_CONFIGURATOR_NAMES = "taxonServiceConfigurator.doNamesWithoutTaxa";
40
	
41
	/**
42
	 * 
43
	 */
44
	public static final String TAXON_SERVICE_CONFIGURATOR_COMMON_NAMES = "taxonServiceConfigurator.doTaxaByCommonNames";
45
	
46
	/**
47
	 * Whether to show UUID and database id in the supplemental data view. 
48
	 */
49
	public static final String SHOW_DEBUG_INFORMATION = "showDebugInformation";
50

    
51
	/**
52
	 * 
53
	 */
54
	public static final String HIDE_BULKEDITOR_INFO = "bulkeditorInfo.hide";
55

    
56
	/**
57
	 * 
58
	 */
59
	public static final String EDIT_MARKER_TYPE_PREFIX = "editMarkerType";
60

    
61
	/**
62
	 * 
63
	 */
64
	public static final String MATCH_STRATEGY_PREFIX = "matchStrategy.";
65

    
66
	/**
67
	 * Access point to the EDIT Map Service that should be used. 
68
	 */
69
	public static final String EDIT_MAP_SERVICE_ACCES_POINT = "editMapServiceAccessPoint";
70

    
71
	/**
72
	 * Whether the editor should connect to a database immediately after starting. 
73
	 * When editor launches for the first time, it will use the default h2 database. 
74
	 * Subsequent launches will always try to connect to the database it was connected to during 
75
	 * the previous session. 
76
	 */
77
	public static final String SHOULD_CONNECT_AT_STARTUP = "shouldConnectAtStartup";
78
	
79
	/** Constant <code>SHOULD_EXPAND_SECTION_WHEN_DATA_AVAILABLE="eu.etaxonomy.taxeditor.shouldExpandSect"{trunked}</code> */
80
	public static final String SHOULD_EXPAND_SECTION_WHEN_DATA_AVAILABLE = "eu.etaxonomy.taxeditor.shouldExpandSectionWhenDataAvailable";
81

    
82
	/** Constant <code>FEATURE_TREE_DEFAULT_TEXT="eu.etaxonomy.taxeditor.featureTree.defa"{trunked}</code> */
83
	public static final String FEATURE_TREE_DEFAULT_TEXT = "eu.etaxonomy.taxeditor.featureTree.default.textualData";
84

    
85
	/** Constant <code>FEATURE_TREE_DEFAULT_STRUCTURE="eu.etaxonomy.taxeditor.featureTree.defa"{trunked}</code> */
86
	public static final String FEATURE_TREE_DEFAULT_STRUCTURE = "eu.etaxonomy.taxeditor.featureTree.default.structuralData";
87
	
88
	/** Constant <code>SORT_RANKS_HIERARCHICHALLY="eu.etaxonomy.taxeditor.menus.sortRanksH"{trunked}</code> */
89
	public static final String SORT_RANKS_HIERARCHICHALLY = "eu.etaxonomy.taxeditor.menus.sortRanksHierarchichally";
90
}
(5-5/13)