Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaren Butzke2012-08-02 18:33:46 +0000
committerKaren Butzke2012-08-02 18:33:46 +0000
commit08e46ffa185b01736b1aa16924e15d4d75efa1df (patch)
treeddda1c2f38db5559da361bbd7c9b977c920f09db
parent92974a21783b55af054348a5b321deefd2b00748 (diff)
downloadwebtools.dali-08e46ffa185b01736b1aa16924e15d4d75efa1df.tar.gz
webtools.dali-08e46ffa185b01736b1aa16924e15d4d75efa1df.tar.xz
webtools.dali-08e46ffa185b01736b1aa16924e15d4d75efa1df.zip
content assist activate = true -> don't push this change yet
-rw-r--r--jpa/plugins/org.eclipse.jpt.jpa.ui/plugin.xml4
1 files changed, 3 insertions, 1 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.jpa.ui/plugin.xml b/jpa/plugins/org.eclipse.jpt.jpa.ui/plugin.xml
index 265977c237..59fedd160a 100644
--- a/jpa/plugins/org.eclipse.jpt.jpa.ui/plugin.xml
+++ b/jpa/plugins/org.eclipse.jpt.jpa.ui/plugin.xml
@@ -145,6 +145,7 @@
<javaCompletionProposalComputer
class="org.eclipse.jpt.jpa.ui.internal.JpaJavaCompletionProposalComputer"
+ activate="true"
categoryId="org.eclipse.jpt.jpa.ui.jpaProposalCategory">
<partition type="__dftl_partition_content_type"/>
<partition type="__java_string"/>
@@ -181,17 +182,18 @@
categoryId="org.eclipse.jpt.jpa.ui.xml.jpaProposalCategory"
class="org.eclipse.jpt.jpa.ui.internal.jpql.JpaJpqlSseCompletionProposalComputer"
id="org.eclipse.jpt.jpa.ui.internal.jpql.JpaJpqlSseCompletionProposalComputer">
+ <!-- Use xml instead of more specific mappingFile content type so JPA Proposals appears in the XML content assist preferences -->
<contentType
id="org.eclipse.core.runtime.xml">
</contentType>
</proposalComputer>
- <!-- Use xml instead of more specific mappingFile content type so JPA Proposals appears in the XMl preferences -->
<proposalComputer
activate="true"
categoryId="org.eclipse.jpt.jpa.ui.xml.jpaProposalCategory"
class="org.eclipse.jpt.jpa.ui.internal.JpaXmlCompletionProposalComputer"
id="org.eclipse.jpt.jpa.ui.internal.JpaXmlCompletionProposalComputer">
+ <!-- Use xml instead of more specific mappingFile content type so JPA Proposals appears in the XML content assist preferences -->
<contentType
id="org.eclipse.core.runtime.xml">
</contentType>

Back to the top