Search code examples
javaeclipsefindreplaceeclipse-juno

Find and remove all getter method in eclipse java


How can I find all the getter methods in eclipse?

I tried get* with methods , but it will return all those non-getter method which starts with get,too. I want only getter methods.

Edit: I want to remove all the getter methods from workspace.


Solution

  • For doing what you want (whatever the reason), it is easier to use Find Files:

    enter image description here

    To narrow down, you could use Selected resources or Enclosing projects.

    Edit: Regex should be little different: (?s)(is|get)([a-zA-Z0-9]*\(\)\s*\{)