Files
openide/plugins/devkit/devkit-java-tests/testData/codeInsight/ExtensionsHighlighting.xml
Yann Cébron 72e427d8fb [devkit] EP attributes: boolean/int attribute must always be treated as such regardless of name, add test
GitOrigin-RevId: 0cf48f2df055bc2269a013a69bbaad4abf799310
2020-06-03 20:26:23 +03:00

55 lines
4.0 KiB
XML

<idea-plugin xmlns:xi="http://www.w3.org/2001/XInclude">
<id>com.intellij.myPlugin</id>
<vendor>JetBrains</vendor>
<version>1.0</version>
<extensionPoints>
<extensionPoint name="foo.bar" interface="java.util.List"/>
<extensionPoint name="ext" interface="java.lang.Runnable"/>
<extensionPoint name="deprecatedEP" interface="foo.MyDeprecatedEP"/>
<extensionPoint name="deprecatedBeanClassEP" beanClass="foo.MyDeprecatedEP"/>
<extensionPoint name="experimentalApiEP" interface="foo.MyExperimentalEP"
dynamic="true"/>
<extensionPoint name="intentionAction"
beanClass="com.intellij.codeInsight.intention.IntentionActionBean">
<with tag="className" implements="com.intellij.codeInsight.intention.IntentionAction"/>
</extensionPoint>
</extensionPoints>
<depends>com.intellij.custom</depends>
<depends config-file="../ExtensionsHighlighting-via-depends.xml">com.myplugin.depends</depends>
<xi:include href="ExtensionsHighlighting-included.xml" xpointer="xpointer(/idea-plugin/*)"/>
<extensions defaultExtensionNs="com.intellij">
<<error descr="'implementation' attribute should be defined">myPlugin.ext</error>/>
<<error descr="'className' child tag should be defined">myPlugin.intentionAction</error>/>
<myPlugin.ext implementation="<error descr="Interface is not allowed">java.lang.Runnable</error>"/>
<myPlugin.ext implementation="<error descr="'java.util.concurrent.TimeUnit' is not assignable to 'java.lang.Runnable'"><error descr="Enum is not allowed"><error descr="Abstract class is not allowed">java.util.concurrent.TimeUnit</error></error></error>"/>
<myPlugin.ext implementation="<error descr="'java.lang.String' is not assignable to 'java.lang.Runnable'">java.lang.String</error>"/>
<<error descr="Deprecated EP 'com.intellij.myPlugin.deprecatedEP'">myPlugin.deprecatedEP</error> implementation="foo.MyDeprecatedEPImpl" order="<error descr="Invalid 'order' attribute value">INVALID_VALUE</error>"/>
<<error descr="Deprecated EP 'com.intellij.myPlugin.deprecatedBeanClassEP'">myPlugin.deprecatedBeanClassEP</error>/>
<warning descr="Usage of API marked with @org.jetbrains.annotations.ApiStatus.Experimental. Such API may be changed or removed in future IDE versions causing compatibility problems."><myPlugin.experimentalApiEP implementation="foo.MyExperimentalEP" <warning descr="Usage of API marked with @org.jetbrains.annotations.ApiStatus.Experimental. Such API may be changed or removed in future IDE versions causing compatibility problems.">experimentalAttribute="java.lang.String"</warning>/></warning>
<myService serviceImplementation="foo.<error descr="Cannot resolve class 'MyInvalid'">MyInvalid</error>"/>
<myService serviceImplementation="foo.MyRunnable" os="mac"/>
<myService serviceImplementation="foo.MyRunnable" timeUnit="seconds" integerNullable="<error descr="Cannot convert empty string to target class 'java.lang.Integer'"></error>" intPropertyForClass="42" forClass="true"/>
<myService serviceImplementation="foo.MyRunnable" timeUnit="<error descr="Cannot resolve 'INVALID_VALUE' in java.util.concurrent.TimeUnit">INVALID_VALUE</error>"
integerNullable="<error descr="Cannot convert string 'INVALID_VALUE' to target class 'java.lang.Integer'">INVALID_VALUE</error>"
intPropertyForClass="<error descr="Cannot convert string 'INVALID_VALUE' to target class 'java.lang.Integer'">INVALID_VALUE</error>"
forClass="<error descr="Cannot resolve symbol 'INVALID_VALUE'">INVALID_VALUE</error>"
/>
<myPlugin.foo.bar implementation="java.util.ArrayList" os="<error descr="Unknown enum value 'INVALID_VALUE'">INVALID_VALUE</error>"/>
<completion.contributor/>
<custom.custom/>
<indirect.indirect/>
<<error descr="Element custom.error is not allowed here">custom.error</error>/>
</extensions>
</idea-plugin>