Export to GitHub

atinject - issue #17

Ordering of field/method injection in the presence of subclassing?


Posted on Sep 10, 2009 by Helpful Hippo

The spec for @Inject says: "Constructors are injected first, followed by fields, and then methods. Fields and methods in superclasses are injected before those in subclasses."

Maybe it's just me, but I am unsure about the intended ordering in the presence of inheritance and both injectable methods and fields. Given a class A and a class B that extends A, it is not clear if the order of injection is fields(A),methods(A),fields(B),methods(B) or fields(A),fields(B),methods(A),methods(B).

Comment #1

Posted on Sep 10, 2009 by Helpful Hippo

(No comment was entered for this change.)

Comment #2

Posted on Sep 10, 2009 by Helpful Dog

"Fields and methods in superclasses are injected before those in subclasses." This means that both fields and methods in a superclass will be injected before fields or methods in a subclass.

Comment #3

Posted on Sep 11, 2009 by Helpful Monkey

Methods from A overridden by B belong to B and are therefore invoked after injecting fields in B, right?

Comment #4

Posted on Sep 11, 2009 by Helpful Dog

Correct.

Status: Invalid

Labels:
Type-Defect Priority-Medium