/* Generated by AspectJ version 1.0.1 */ class Company { Dept admin; Dept devp; public Company(Dept a, Dept d) { super(); this.admin = a; this.devp = d; } public void t() { this.t_admin(); this.t_devp(); } public void t_admin() { this.t$method_call(this.admin); this.t$method_call0(this.devp); } public void t_devp() { this.devp.t(); } private void t$method_call(Dept target) { Total.aspectInstance.before1$ajc(this, target); target.t(); } private void t$method_call0(Dept target) { Total.aspectInstance.before1$ajc(this, target); target.t(); } }