Etienne Studer
- Total activity 236
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 82
-
Created Find super of PsiMethod
HiIf I have a PsiMethod, how can I get to the PsiMethod that it overrides (in case it does)?For example, if I have the PsiMethod that represents how can I get a reference to the PsiMethod that rep... -
Created Repeating exception in CodeStyleManagerImpl
The exception below, I get almost everyday :( It typically happens after pressing Ctrl-Alt-L, although not always.--Etiennehttp://www.intellij.net/tracker/idea/viewSCR?publicId=59847java.lang.Throw... -
Created Intention Power Pack Exception
HiIPP chokes on when trying to execute the quick fix 'convert to decimal'.http://www.intellij.net/tracker/idea/viewSCR?publicId=59783--Etienne -
Created [ANN] PluginUploader plugin
HiI've uploaded a little plugin called 'Plugin Uploader' that allows to upload new versions of an existing plugin from within IDEA and without having to go through the web site.Maybe helpful to oth... -
Created Get/Set Debug break points
HiIs there an OpenAPI to set and get debug break points? I hope there is ;)Thanks in advance for any hints.--Etienne -
Created Select button of ComponentWithBrowseButton using keyboard
HiUsing a TextFieldWithBrowseButton in a UI, how can the user navigate to the ellipsis using the keyboard?The open api says...// FixedSizeButton isn't focusable but it should be selectable via keyb... -
Created Debugging exception in ProblemDescriptorImpl
Hi In my inspection, LocalInspectionTool.checkMethod() gets called and I extract the method's parameters from the parameter list. If needed, the parameter (not null) gets passed on to InspectionMan... -
Created [ANN] SimpleIntentions 1.2.1
I added...- intention to unwrap do and do-while statements- inspection to check class/method/field modifier order against JLS suggestion (incl. quick fix)- inspection to check for fields and method... -
Created Rename Method Parameter
HiIs there some API to execute a renaming of a method parameter? Basically, executing an automated Shift-F6 on a method parameter (I've got the PsiVariable).If there is no API for such a renaming, ... -
Created IntentionAction: how to start write action
Hi IntentionAction.startInWriteAction has the javadoc below: /** Indicate whether this action should be invoked inside write action. Should return false if e.g. modal dialog is shown inside the...