Etienne Studer
- 活动总数 236
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 0
- 订阅数 82
-
创建于 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(... -
创建于 [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... -
创建于 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... -
创建于 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... -
创建于 registering intentions
HiI tried to add an intention throughIntentionManager manager = IntentionManager.getInstance(fProject);String[] otherCategory = new String[]{"Other"};manager.registerIntentionAndMetaData(new FooInt... -
创建于 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... -
创建于 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... -
创建于 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... -
创建于 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... -
创建于 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...