/* Generated by AspectJ version 1.0.1 */ class Main { public static void main(String[] args) throws Exception { Main.main$ajcPostAround4(); System.out.println("total=" + Total.total); } Main() { super(); } private static void main$ajcPostAround4() { Dept d1 = new Dept(); Dept d2 = new Dept(); Company c = new Company(d1, d2); d1.addEmployee(new Employee(10)); d1.addEmployee(new Employee(100)); d1.addEmployee(new Employee(1000)); d2.addEmployee(new Employee(10)); d2.addEmployee(new Employee(50)); c.t(); } }