This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Usage: | |
// Install LivePlugin http://plugins.jetbrains.com/plugin/7282 | |
// Install this plugin into LivePlugin and run it | |
// In source code, create a method or constructor call and place the cursor into the empty braces | |
// Open the intentions drop down menu and select the "Create variables for method call parameters" | |
import com.intellij.codeInsight.intention.PsiElementBaseIntentionAction | |
import com.intellij.openapi.editor.Editor | |
import com.intellij.openapi.editor.Document | |
import com.intellij.openapi.project.Project | |
import com.intellij.psi.PsiCallExpression |