0 Replies Latest reply on Aug 19, 2008 3:54 PM by nico.ben

    Annotation inheritance

    nico.ben
      Hi,
      I have a doubt about annotation inheritance.
      If my superclass has the follwing method:


      @Begin(join=true, flushMode=FlushModeType.MANUAL)
          public abstract String start();


      And subclass has:

      @Override
          public String start() {
              return null;
          }


      @Begin(join=true, flushMode=FlushModeType.MANUAL) is inheritated or @Override cancels all super-annotations?

      Thank you,
      N