Maybe there is another way, but you can
- add method declaration in interface
- go to the "Problems" view, select one of the compilation errors caused by the new method, right-click and select "Quick Fix"
- Select "Add Unrealized Methods" and select all other classes at the bottom of the dialog box.
This will force the generated methods to return false, though:
public boolean isXXX() {
So, you can search and replace with the following regular expression to search for:
// TODO Auto-generated method stub\R\s*return false;
And the following replacement line:
return true;
source share