class SecurityDS{ String SecurityName; boolean Bank;//true for bank and false for share double RateOfInterest;//for bank String CompanyName;//for shares public SecurityDS(){} public SecurityDS(String SecurityName, boolean Bank, String CompanyName){ this.SecurityName = SecurityName; this.Bank = Bank; this.RateOfInterest = 0.0; this.CompanyName = CompanyName; } public SecurityDS(String SecurityName, boolean Bank, double RateOfInterest){ this.SecurityName = SecurityName; this.Bank = Bank; this.CompanyName = "-"; this.RateOfInterest = RateOfInterest; } }