Annotation Interface CallSuper


@Documented @Target(METHOD) @Retention(CLASS) public @interface CallSuper
Denotes that any overriding methods should invoke this method as well.

Example:


  @CallSuper
  public void onCreate() {
      // something here
  }