Tagged Questions
0
votes
0answers
15 views
How to use structural search to match literals?
How can I use IJ structural search to automatically refactor the following
@myannotation(1) private CLASS_NAME variableName;
into
private @myannotation(1) CLASS_NAME variableName;
I had tried ...
0
votes
2answers
116 views
Intellij Idea How to add interface implementation to classes?
For example I have many classes than implement my interface. After adding new method definition in the interface, how can I fast-add blank interface implementations for all that classes?
1
vote
0answers
69 views
Batch rename of methods using IntelliJ IDEA
I have a class with many (approximately 40) methods with names in SCREAMING_CASE_LIKE_THIS.
Is there a quick way, perhaps via the code analysis/inspections, to rename all of these to more idiomatic ...
17
votes
5answers
247 views
Auto generify non-generic interface implementation
I have interface
public interface ObjectBuilder<E> {
E buildObject();
}
Also, the project has a lot of classes that implement non-generic version of the interface.
class MyClassBuilder ...
1
vote
1answer
74 views
What is the use case for type migration in Intellij Idea?
Okay so I have this variable declaration
private List<String> params;
and I wanted to change the type of params to :
private Collection<String> params;
I choose Refactor-->Type ...
4
votes
2answers
234 views
Is there a ReSharper-like code reformat and cleanup tool for Scala?
I'd like to automatically clean-up and reformat a Scala code file the way I can do with ReSharper in Visual Studio for C#. Can I do this with IntelliJ Idea or another tool?
1
vote
3answers
664 views
Is there way for extracting string resources in Android project in IntelliJ IDE?
When I'm working on Android project I would like to use some magic shortcut that would extract my string to strings.xml and also allow me to change the key. Is there any?
If there isn't, is there a ...