Package main.company

Examples of main.company.Driver


                        }else{
                            System.out.println("\n\nWorker wasn't added to company! Try again!\n");
                        }
                        break;
                    case 2:
                        Driver driver = new Driver(keyboard.readLine(),Double.parseDouble(keyboard.readLine()),Boolean.parseBoolean(keyboard.readLine()));
                        company.addWorker(driver);
                        if(company.addWorker(driver)){
                            System.out.println("\n\nDriver was added to company.\n");
                        }else{
                            System.out.println("\n\nDriver wasn't added to company! Try again!\n");
View Full Code Here

TOP

Related Classes of main.company.Driver

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.