mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
* 2023.1 release: update gh-links, re-gen EP lists * code samples: update target version * code samples: fix framework_basics missing dependency on Java plugin * stub_indexes.md: update -master GH link * EP lists: improve "Topic" presentation * internal_ui_inspector.md: fix link * kotlin_demo: fix link * Generate Android Studio releases * publishing_plugin.md: add note about plugin signing * plugin_signing.md: Update information about providing `certificateChainFile` and `privateKeyFile` + minor changes * tools_gradle_intellij_plugin.md: add `verifyPluginSignature` task * plugin_signing.md: add Plugin Signature Verification * plugin_signing.md: fixed anchor * creating_plugin_project.md: update * GH: set final 2023.1 tag * GH code samples: update PV version * code samples: ComparingStringReferencesInspection compatibility with 231.*
Conditional Operator Converter 
Reference: Code Intentions in IntelliJ SDK Docs
Quickstart
Conditional Operator Converter provides an intention for converting the ternary operator into the if statement, i.e.:
public class X {
void f(boolean isMale) {
String title = isMale ? "Mr." : "Ms.";
System.out.println("title = " + title);
}
}
will become:
public class X {
void f(boolean isMale) {
String title;
if (isMale) {
title = "Mr.";
} else {
title = "Ms.";
}
System.out.println("title = " + title);
}
}
To invoke the intention action, it is necessary to place the caret on the ?
character of the ternary operator.
The converter in the isAvailable
method, has defined the token check to match JavaTokenType.QUEST
, which is ?
character.
Extension Points
Name | Implementation | Extension Point Class |
---|---|---|
com.intellij.intentionAction |
ConditionalOperatorConverter | PsiElementBaseIntentionAction |
Reference: Plugin Extension Points in IntelliJ SDK Docs