@Retention(value=CLASS)
@Target(value={METHOD,CONSTRUCTOR})
public @interface COverride
Override a method in a class.
The transformer method must have the same parameters and return type as the overridden method.
The access of the transformer method has to be higher or equal to the overridden method (private < package private < protected < public).
If the overridden method is static, the transformer method has to be static as well.