summaryrefslogtreecommitdiff
path: root/plugins/devkit/testData/codeInsight/inspectionMappingWithDefaultBundle.xml
blob: 851e097992ebecc273752591dffbf6c386beed01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<idea-plugin version="2">

  <id>com.intellij</id>
  <resource-bundle>bundle</resource-bundle>

  <extensionPoints>
    <extensionPoint name="localInspection"
                    beanClass="com.intellij.codeInspection.LocalInspectionEP"/>
  </extensionPoints>

  <extensions defaultExtensionNs="com.intellij">
    <<warning descr="groupName or groupKey should be specified">localInspection</warning> key="foo"/>
    <<warning descr="displayName or key should be specified">localInspection</warning> groupKey="foo"/>
    <<warning descr="groupName or groupKey should be specified">localInspection</warning> key="foo" groupBundle="bundle"/>

    <<warning descr="groupName or groupKey should be specified">localInspection</warning> key="foo" bundle="bundle"/>
    <<warning descr="displayName or key should be specified">localInspection</warning> groupKey="foo" bundle="bundle"/>

    <localInspection key="foo" bundle="bundle" groupName="groupName"/>
    <localInspection groupKey="foo" bundle="bundle" displayName="displayName"/>

  </extensions>
</idea-plugin>