Reputation: 2758
Is it possible to search for all static blocks in the code of a java project using Eclipse IDE ?
public class ExampleClass {
static
{
...
}
}
Upvotes: 2
Views: 560
Reputation: 86459
Search for the regular expression static\s*\{
This expression works even if the curly brace is on the subsequent line, as shown in your example.
Details:
static\s*\{
*.java
.Upvotes: 3