Etienne Studer
- Total activity 236
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 82
-
Created Structural Replace - Replacing constructor with factory method
HiI wanted to replace all occurrences of new Foo("test") with a call of the existing method Foo.create("test").I triedFind: new Foo($1$)Replace: Foo.create($1$)But this ended up as new Foo(Foo.crea... -
Created Structural Search - calls of super() in overriden method
HiHow can I find all occurrences of:overrides of method XYZ.foo() that call super.foo() in overriden method foo().e.g.class XYZ { public void foo() { ... }}class Bar extends XYZ { public void... -
Created Structural Search - find/replace method calls of an interface
HiI'd like to find all occurences of java.util.List.remove(Object o) and replace them with java.util.List.remove(0) (just a dummy example).For example:list.remove("x") -> list.remove(0) getList().r... -
Created Structural search question
HiHow can I find bothstatic JButton x;static JButton x = new JButton();using a structural search.I can find static JButton x;using static $classname$ $varname$but not both of the statements menti... -
Created TMate - 2 Plugins show up in Plugin Manager
HiThis is a bit confusing: in the IDEA Plugin Manager of IDEA 4.5.4, 2 TMate plugins show up - 1.5 and 1.0.2. Of course, I chose the wrong one first (Version 1.0.2).Maybe the old one should not app... -
Created Structural search - find all instantiations of a class incl. sbuclasses
HiI'd like to find all instantiations of a class and its subclasses.Example:Find all lines where a subclass of JComponent is instantiated, e.g. new JTable(), new JTextField(), etc.Is the structural... -
Created Plugin jar on classpath of JavaCommandLineState
Is there a way using the OpenAPI to find the path to my plugin jar? I am using the JavaCommandLineState class and would like to implicitly add my plugin's jar file to the classpath using JavaParame... -
Created Add RunManager and RunnerAndConfigurationSettings to OpenAPI
HiCould you make RunManager and especially RunnerAndConfigurationSettings part of the OpenAPI?That would be great because I have a RunnerAndConfigurationSettings instance created by the RunManager ... -
Created Query the state of the "Make module before running" checkbox
HiI would like to query the state of the "Make module before running/debugging/reloading" checkbox.What is the API call fo this?I'm looking forward to any help on this.--Etienne -
Created Menu-Entry for specific Java class instances only
I would like to have an entry in the right-click pop menu of the editor where the entry is only enabled when the mouse-click is within a Java class of a specific instance.For example:Only when righ...