Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkmoore2008-07-25 17:27:32 +0000
committerkmoore2008-07-25 17:27:32 +0000
commit75726a151172cc9db06c577e69eba8db577771f3 (patch)
tree4cb64cb28e67f34346624f2ccd7d9db9d6d72f24 /jpa/plugins/org.eclipse.jpt.eclipselink.ui/src/org/eclipse/jpt/eclipselink/ui/internal/EclipseLinkHelpContextIds.java
parentbc37e1ac643524dda604f91c80aba09c3bfa8d1d (diff)
downloadwebtools.dali-75726a151172cc9db06c577e69eba8db577771f3.tar.gz
webtools.dali-75726a151172cc9db06c577e69eba8db577771f3.tar.xz
webtools.dali-75726a151172cc9db06c577e69eba8db577771f3.zip
partial support for EclipseLink platform java entity caching
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.eclipselink.ui/src/org/eclipse/jpt/eclipselink/ui/internal/EclipseLinkHelpContextIds.java')
-rw-r--r--jpa/plugins/org.eclipse.jpt.eclipselink.ui/src/org/eclipse/jpt/eclipselink/ui/internal/EclipseLinkHelpContextIds.java35
1 files changed, 35 insertions, 0 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.eclipselink.ui/src/org/eclipse/jpt/eclipselink/ui/internal/EclipseLinkHelpContextIds.java b/jpa/plugins/org.eclipse.jpt.eclipselink.ui/src/org/eclipse/jpt/eclipselink/ui/internal/EclipseLinkHelpContextIds.java
new file mode 100644
index 0000000000..9f80930978
--- /dev/null
+++ b/jpa/plugins/org.eclipse.jpt.eclipselink.ui/src/org/eclipse/jpt/eclipselink/ui/internal/EclipseLinkHelpContextIds.java
@@ -0,0 +1,35 @@
+/*******************************************************************************
+ * Copyright (c) 2008 Oracle. All rights reserved.
+ * This program and the accompanying materials are made available under the terms of
+ * the Eclipse Public License v1.0, which accompanies this distribution and is available at
+ * http://www.eclipse.org/legal/epl-v10.html.
+ *
+ * Contributors:
+ * Oracle - initial API and implementation
+ ******************************************************************************/
+package org.eclipse.jpt.eclipselink.ui.internal;
+
+import org.eclipse.jpt.eclipselink.ui.JptEclipseLinkUiPlugin;
+
+/**
+ * Help context ids for the Dali EclipseLink UI.
+ * <p>
+ * This interface contains constants only; it is not intended to be
+ * implemented.
+ * </p>
+ */
+@SuppressWarnings("nls")
+public interface EclipseLinkHelpContextIds {
+
+ //ContextID prefix
+ public static final String PREFIX = JptEclipseLinkUiPlugin.PLUGIN_ID + ".";
+
+ //Persistent Type composites
+ public static final String CACHING_CACHE_TYPE = PREFIX + "caching_cacheType";
+ public static final String CACHING_SHARED = PREFIX + "caching_shared";
+ public static final String CACHING_ALWAYS_REFRESH = PREFIX + "caching_alwaysRefresh";
+ public static final String CACHING_REFRESH_ONLY_IF_NEWER = PREFIX + "caching_refreshOnlyIfNewer";
+ public static final String CACHING_DISABLE_HITS = PREFIX + "caching_disableHits";
+
+
+}

Back to the top