Annotation Type CallSuper


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

    Example:

    
      @CallSuper
      public abstract void onFocusLost();