A method annotated with @Expensive overrides an un-annotated method.
@Expensive
Example:
interface I { void foo(); } class A implements I { @Expensive public void foo() {} }