summaryrefslogtreecommitdiff
path: root/resources
diff options
context:
space:
mode:
authorTor Norbye <tnorbye@google.com>2013-05-31 07:45:51 -0700
committerTor Norbye <tnorbye@google.com>2013-05-31 07:45:51 -0700
commitec3fb1e06285c0467a7a20360ca80453bc7635d4 (patch)
tree2402cdec34611f34b8385ff45387d6734bf6f994 /resources
parenta6eac331b3d9f0d4168b12356ea256c83f4e9c05 (diff)
downloadidea-ec3fb1e06285c0467a7a20360ca80453bc7635d4.tar.gz
Snapshot 568f05589922685b8c8f9a2f2f465043b8128542 from master branch of git://git.jetbrains.org/idea/community.git
Change-Id: I47fe8cb5d8a3c9876cd4c313dca1a8cc531288ec
Diffstat (limited to 'resources')
-rw-r--r--resources/src/META-INF/IdeaPlugin.xml10
-rw-r--r--resources/src/componentSets/IdeaComponents.xml5
-rw-r--r--resources/src/idea/RichPlatformActions.xml1
3 files changed, 10 insertions, 6 deletions
diff --git a/resources/src/META-INF/IdeaPlugin.xml b/resources/src/META-INF/IdeaPlugin.xml
index 604870defeec..9cb6c9123115 100644
--- a/resources/src/META-INF/IdeaPlugin.xml
+++ b/resources/src/META-INF/IdeaPlugin.xml
@@ -6,7 +6,7 @@
<module value="com.intellij.modules.java"/>
<module value="com.intellij.modules.all"/>
<xi:include href="/idea/JavaActions.xml" xpointer="xpointer(/component/*)"/>
-
+ <xi:include href="/META-INF/ExternalSystemExtensions.xml" xpointer="xpointer(/idea-plugin/extensions/*)"/>
<xi:include href="/componentSets/Debugger.xml" xpointer="xpointer(/components/*)"/>
<application-components>
@@ -212,6 +212,7 @@
<extensions defaultExtensionNs="com.intellij">
<lang.syntaxHighlighterFactory key="JAVA" implementationClass="com.intellij.lang.java.JavaSyntaxHighlighterFactory"/>
+ <syntaxHighlighter id="java.class" key="CLASS" factoryClass="com.intellij.lang.java.JavaSyntaxHighlighterFactory"/>
<constantExpressionEvaluator language="JAVA" implementationClass="com.intellij.psi.impl.PsiExpressionEvaluator" />
<annotationSupport language="JAVA" implementationClass="com.intellij.psi.impl.source.tree.java.JavaAnnotationSupport" />
@@ -626,7 +627,7 @@
implementationClass="com.intellij.codeInspection.magicConstant.MagicConstantInspection" />
<localInspection language="JAVA" shortName="SuperClassHasFrequentlyUsedInheritors"
groupBundle="messages.InspectionsBundle"
- groupKey="group.names.inheritance.issues" enabledByDefault="true" level="WARNING"
+ groupKey="group.names.inheritance.issues" enabledByDefault="false" level="WARNING"
implementationClass="com.intellij.codeInspection.inheritance.SuperClassHasFrequentlyUsedInheritorsInspection"
displayName="Class may extend a commonly used base class instead of implementing interface"/>
@@ -1019,8 +1020,6 @@
<extendWordSelectionHandler implementation="com.intellij.codeInsight.editorActions.wordSelection.CaseStatementsSelectioner"/>
<extendWordSelectionHandler implementation="com.intellij.codeInsight.editorActions.wordSelection.AntLikePropertySelectionHandler"/>
- <syntaxHighlighter key="CLASS" implementationClass="com.intellij.ide.highlighter.JavaFileHighlighter"/>
-
<structureViewBuilder key="CLASS" factoryClass="com.intellij.ide.highlighter.JavaClsStructureViewBuilderProvider"/>
<getDataRule key="analysisScope" implementationClass="com.intellij.analysis.AnalysisScopeRule"/>
@@ -1420,6 +1419,9 @@
<action id="TemplateProjectStructure" class="com.intellij.ide.actions.TemplateProjectStructureAction">
<add-to-group group-id="FileSettingsGroup" anchor="last"/>
</action>
+ <action id="ShowSiblings" class="com.intellij.codeInsight.hint.actions.ShowSiblingsAction">
+ <add-to-group group-id="QuickActions" anchor="after" relative-to-action="QuickImplementations"/>
+ </action>
</actions>
</idea-plugin>
diff --git a/resources/src/componentSets/IdeaComponents.xml b/resources/src/componentSets/IdeaComponents.xml
index 6d3c6b76943a..6faf2c022ed4 100644
--- a/resources/src/componentSets/IdeaComponents.xml
+++ b/resources/src/componentSets/IdeaComponents.xml
@@ -41,7 +41,8 @@
</component>
<component>
- <implementation-class>com.intellij.profile.codeInspection.InspectionProjectProfileManager</implementation-class>
+ <interface-class>com.intellij.profile.codeInspection.InspectionProjectProfileManager</interface-class>
+ <implementation-class>com.intellij.profile.codeInspection.InspectionProjectProfileManagerImpl</implementation-class>
<loadForDefaultProject/>
</component>
@@ -58,4 +59,4 @@
</component>
</module-components>
</components>
-
+
diff --git a/resources/src/idea/RichPlatformActions.xml b/resources/src/idea/RichPlatformActions.xml
index e8c09006be0a..5282df4a9ed7 100644
--- a/resources/src/idea/RichPlatformActions.xml
+++ b/resources/src/idea/RichPlatformActions.xml
@@ -25,6 +25,7 @@
<xi:include href="/idea/PlatformActions.xml" xpointer="xpointer(/component/*)"/>
<xi:include href="/idea/VcsActions.xml" xpointer="xpointer(/component/*)"/>
+ <xi:include href="/idea/ExternalSystemActions.xml" xpointer="xpointer(/component/*)"/>
<xi:include href="/idea/LangActions.xml" xpointer="xpointer(/component/*)"/>
<actions>