Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpfilion2011-04-28 00:32:29 +0000
committerpfilion2011-04-28 00:32:29 +0000
commit81af7277721ed00ada3125968d3a7a88fcdf7ad6 (patch)
treefeeef34585acd4bb083ee34d5fcd37a7f25bdf4f
parent668e135e756a85d55eb7b5c5e838b5659c0cdfc2 (diff)
downloadwebtools.dali-81af7277721ed00ada3125968d3a7a88fcdf7ad6.tar.gz
webtools.dali-81af7277721ed00ada3125968d3a7a88fcdf7ad6.tar.xz
webtools.dali-81af7277721ed00ada3125968d3a7a88fcdf7ad6.zip
Fix for bug 343686 - JPQL content assist extension point added to wrong plug-in
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.eclipselink.ui/plugin.xml17
1 files changed, 16 insertions, 1 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.ui/plugin.xml b/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.ui/plugin.xml
index aa740dc359..f6356f7145 100644
--- a/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.ui/plugin.xml
+++ b/jpa/plugins/org.eclipse.jpt.jpa.eclipselink.ui/plugin.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.2"?> <!--
- Copyright (c) 2007, 2010 Oracle. All rights reserved.
+ Copyright (c) 2007, 2011 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.
@@ -120,4 +120,19 @@
</extension>
+
+ <extension
+ id="JpaJpqlSseCompletionProposal"
+ point="org.eclipse.wst.sse.ui.completionProposal">
+ <proposalComputer
+ activate="true"
+ categoryId="org.eclipse.wst.xml.ui.proposalCategory.xmlTags"
+ class="org.eclipse.jpt.jpa.ui.internal.jpql.JpaJpqlSseCompletionProposalComputer"
+ id="org.eclipse.jpt.jpa.ui.internal.jpql.JpaJpqlSseCompletionProposalComputer">
+ <contentType
+ id="org.eclipse.jpt.jpa.eclipselink.core.content.orm">
+ </contentType>
+ </proposalComputer>
+ </extension>
+
</plugin>

Back to the top