Upgrading old plugin - how to display ApplicationComponents JComponent?

My old plugin has ApplicationComponent that creates JComponent with configuration dialog in createComponent(). Previously, this dialog appeared in plugin configuration. This is now gone; and I don't know how to display this dialog any more?

0
1 comment

Hi,

Registering of Configurable via AppilcationComponent was deprecated and removed in latest release.

To register Configurable, you can add following code in plugin.xml:

<extensions defaultExtensionNs="com.intellij">
  <applicationConfigurable id="some.plugin.configurable" displayName="Plugin Configurable" instance="common.configure.Configurable"/>
</extensions>

You can check https://sites.google.com/site/malenkov/java/150403 for the details.

0

Please sign in to leave a comment.