Etienne Studer
- Total activity 236
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 82
-
Created Structural Search: find method calls
HiI'm trying to find all calls to JButton.setToolTipText(), but I don't want to find calls to JComponent.setToolTipText() in general.So, if I haveJComponent c = new JButton();JLabel l = new JLabel(... -
Created [ANN] SimpleIntentions Plugin
During Christmas, I wrote a little IDEA 5.x plugin called Simple Intentions that provides three additional code intentions and one additional code inspection for IDEA. The implemented code intentio... -
Created Replace one statement with n others
HiIf, for example, I have a reference to a PsiDeclarationStatement (which is part of the file) and would like to replace this statement with n other statements that are also part of that file, what... -
Created Is PsiElement.copy() expensive?
HiIs PsiElement.copy() expensive? I'm asking because the JavaDoc on this method says 'Creates a copy of the file containing the PSI element and returns the corresponding element in the created copy... -
Created registering intentions
HiI tried to add an intention throughIntentionManager manager = IntentionManager.getInstance(fProject);String[] otherCategory = new String[]{"Other"};manager.registerIntentionAndMetaData(new FooInt... -
Created deleteing adding PsiElements
HiWorking with PSI, I want to take a PsiStatement that I get from the current PsiFile and move it somewhere else within that file.What happens if I append that 'source' statement to some other 'tar... -
Created how to change other.xml config file
HiI'd like to add a lot of External Resources to the IDEA settings. Instead of going through the UI, I tried the following:- close IDEA- open other.xml in the config/options folder- add more eleme... -
Created structural search - non static field declaration
HiI'd like to find all non-static declaration of loggers. The template below works fine to find all logger declarations...Logger $logger$ = Logger.getLogger($param$);...but how can I say that I onl... -
Created Working with 2 monitors
HiI'm not sure if this is the right place to ask this question, but I'll give it a try...Working with IDEA on a secondary monitor is currently not possible. Will this 'killer bug' be fixed in 5.0.2... -
Created Structural Search - classes implementing interface X AND B
HiI try to use Structural Search to find all classes that implement 2 interfaces Alpha AND Beta.The following gives me too many results:class $Class$ implements $Interface1$ $Interface2$ {}Any idea...