|
Lines 1-5
Link Here
|
| 1 |
/******************************************************************************* |
1 |
/******************************************************************************* |
| 2 |
* Copyright (c) 2008 Oracle. All rights reserved. |
2 |
* Copyright (c) 2009 Oracle. All rights reserved. |
| 3 |
* This program and the accompanying materials are made available under the terms of |
3 |
* This program and the accompanying materials are made available under the terms of |
| 4 |
* the Eclipse Public License v1.0, which accompanies this distribution and is available at |
4 |
* the Eclipse Public License v1.0, which accompanies this distribution and is available at |
| 5 |
* http://www.eclipse.org/legal/epl-v10.html. |
5 |
* http://www.eclipse.org/legal/epl-v10.html. |
|
Lines 9-15
Link Here
|
| 9 |
******************************************************************************/ |
9 |
******************************************************************************/ |
| 10 |
package org.eclipse.jpt.eclipselink.ui.internal; |
10 |
package org.eclipse.jpt.eclipselink.ui.internal; |
| 11 |
|
11 |
|
| 12 |
import org.eclipse.jpt.eclipselink.ui.JptEclipseLinkUiPlugin; |
12 |
import org.eclipse.jpt.ui.JptUiPlugin; |
| 13 |
|
13 |
|
| 14 |
/** |
14 |
/** |
| 15 |
* Help context ids for the Dali EclipseLink UI. |
15 |
* Help context ids for the Dali EclipseLink UI. |
|
Lines 22-36
Link Here
|
| 22 |
public interface EclipseLinkHelpContextIds { |
22 |
public interface EclipseLinkHelpContextIds { |
| 23 |
|
23 |
|
| 24 |
//ContextID prefix |
24 |
//ContextID prefix |
| 25 |
public static final String PREFIX = JptEclipseLinkUiPlugin.PLUGIN_ID + "."; |
25 |
public static final String PREFIX = JptUiPlugin.PLUGIN_ID + "."; |
| 26 |
|
26 |
|
| 27 |
//Persistent Type composites |
27 |
//Persistent Type composites |
| 28 |
public static final String CACHING_CACHE_TYPE = PREFIX + "caching_cacheType"; |
|
|
| 29 |
public static final String CACHING_SHARED = PREFIX + "caching_shared"; |
| 30 |
public static final String CACHING_ALWAYS_REFRESH = PREFIX + "caching_alwaysRefresh"; |
28 |
public static final String CACHING_ALWAYS_REFRESH = PREFIX + "caching_alwaysRefresh"; |
| 31 |
public static final String CACHING_REFRESH_ONLY_IF_NEWER = PREFIX + "caching_refreshOnlyIfNewer"; |
|
|
| 32 |
public static final String CACHING_DISABLE_HITS = PREFIX + "caching_disableHits"; |
| 33 |
public static final String CACHING_CACHE_COORDINATION_TYPE = PREFIX + "caching_cacheCoordinationType"; |
29 |
public static final String CACHING_CACHE_COORDINATION_TYPE = PREFIX + "caching_cacheCoordinationType"; |
|
|
30 |
public static final String CACHING_CACHE_TYPE = PREFIX + "caching_cacheType"; |
| 31 |
public static final String CACHING_DISABLE_HITS = PREFIX + "caching_disableHits"; |
| 32 |
public static final String CACHING_REFRESH_ONLY_IF_NEWER = PREFIX + "caching_refreshOnlyIfNewer"; |
| 33 |
public static final String CACHING_SHARED = PREFIX + "caching_shared"; |
| 34 |
|
| 35 |
//Persistence Xml Editor |
| 36 |
public static final String PERSISTENCE_CACHING = PREFIX + "persistence_caching"; |
| 37 |
public static final String PERSISTENCE_CONNECTION = PREFIX + "persistence_connection"; |
| 38 |
public static final String PERSISTENCE_CUSTOMIZATION = PREFIX + "persistence_customization"; |
| 39 |
public static final String PERSISTENCE_GENERAL = PREFIX + "persistence_general"; |
| 40 |
public static final String PERSISTENCE_LOGGING = PREFIX + "persistence_logging"; |
| 41 |
public static final String PERSISTENCE_OPTIONS = PREFIX + "persistence_options"; |
| 42 |
public static final String PERSISTENCE_SCHEMA_GENERATION = PREFIX + "persistence_schemaGeneration"; |
| 43 |
|
| 44 |
public static final String PERSISTENCE_CACHING_DEFAULT_SHARED = PREFIX + "caching_defaultShared"; |
| 45 |
public static final String PERSISTENCE_CACHING_DEFAULT_SIZE = PREFIX + "caching_defaultSize"; |
| 46 |
public static final String PERSISTENCE_CACHING_DEFAULT_TYPE = PREFIX + "caching_defaultType"; |
| 47 |
|
| 48 |
public static final String PERSISTENCE_LOGGING_EXCEPTIONS = PREFIX + "logging_exceptions"; |
| 49 |
public static final String PERSISTENCE_LOGGING_LEVEL = PREFIX + "logging_level"; |
| 50 |
public static final String PERSISTENCE_LOGGING_SESSION = PREFIX + "logging_session"; |
| 51 |
public static final String PERSISTENCE_LOGGING_THREAD = PREFIX + "logging_thread"; |
| 52 |
public static final String PERSISTENCE_LOGGING_TIMESTAMP = PREFIX + "logging_timeStamp"; |
| 34 |
|
53 |
|
| 35 |
|
54 |
public static final String PERSISTENCE_OPTIONS_SESSION_NAME = PREFIX + "options_sessionName"; |
|
|
55 |
public static final String PERSISTENCE_OPTIONS_SESSIONS_XML = PREFIX + "options_sessionsXml"; |
| 56 |
public static final String PERSISTENCE_OPTIONS_TARGET_DATABASE = PREFIX + "options_targetDatabase"; |
| 57 |
public static final String PERSISTENCE_OPTIONS_TARGET_SERVER = PREFIX + "options_targetServer"; |
| 58 |
|
| 36 |
} |
59 |
} |