mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 18:50:54 +07:00
55 lines
4.0 KiB
XML
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> |