0

IntelliJ 15 在 SimpleJavaParameters 类中引入了一个名为 setUseClasspathJar 的新方法。

如果用户运行 IntelliJ 15,我希望我的插件设置调用此方法。如果用户运行 IntelliJ 14.1,则该方法甚至不可用(它不会编译)。

我如何编写我的插件,以便在有这样的签名更改时根据版本执行不同的操作?

4

1 回答 1

1

您只能在 IntelliJ IDEA 15 上编译并使用 if 语句保护调用。例如:

final BuildNumber build = ApplicationInfo.getInstance().getBuild();
if (build.getBaselineVersion() >= 143) {
    // call setUseClasspathJar() here
}

此处提供了不同基于 IntelliJ 平台的产品的内部版本号范围。

如果方法可用,另一种选择是使用反射来调用该方法。这要冗长得多,但com.intellij.util.ReflectionUtil可以使它更容易一些:

final Method method = 
    ReflectionUtil.getDeclaredMethod(SimpleJavaParameters.class, 
                                     "setUseClasspathJar", boolean.class);
if (method != null) {
  try {
    method.invoke(parameters, true);
  }
  catch (IllegalAccessException e1) {
    throw new RuntimeException(e1);
  }
  catch (InvocationTargetException e1) {
    throw new RuntimeException(e1);
  }
}
于 2015-12-18T10:35:35.940 回答