I would like to be able to implement a method at runtime that is called before an object runs the initializers. This will allow me to set fields that are used during initia
Do you mean something like this assuming it would compile (which it doesn't):
@Override A a = aClass.newInstance() { public void initialize() { this.message = args[1]; } };