This is a walkmod plugin to add the override annotation in Java methods whenever it is necessary (when a given class implements an interface or defines a method that belongs to its superclass).
Let’s see an example. From this code, which is a class with its typical toString
implementation.
package example;
public class Foo{
public String toString(){
...
}
}
It is transformed to :
package example;
public class Foo{
@Override
public String toString(){
...
}
}