package aggregation.com; public class Employee { int id; String name; Address add; Employee(int i, String n, Address a){ this.id = i; this.name=n; this.add=a; } void display(){ System.out.println("Your Id Number is .................. (" + id + ")\n" + "Your Name is .........................(" + name + ")\n" + "Your House _No Is ...........................(" + add.hno + ")\n" + "Your City Name is................................(" + add.city + ")\n" + "your Country Name is..................................(" + add.country + ") \n " ); System.out.print("------------------------Composition With Aggregation------------------------"); } }