create program on eclips java
public class Airplan { /* Data Fields */ Enging eng; Rudder rud, Wing[] wings = new wing [2]; .... } ---------------------------------------------- public boolean equals(Object obj) { if (obj == this) return true; if (obj == null) return false; if (this.getClass() == obj.getClass()) { Employee other = (Employee) obj; return name.equals(other.name) && address.equals(other.address); } else { return false; } }