Uses of Class
dataModel.Employee
-
Packages that use Employee Package Description dataLoad dataModel mainEngine reportinEngines userViews -
-
Uses of Employee in dataLoad
Method parameters in dataLoad with type arguments of type Employee Modifier and Type Method Description void
FullDataLoader. assignOrders(java.util.ArrayList<Employee> personnel, java.util.ArrayList<Dish> menu, java.util.ArrayList<Order> orders)
Creates the mapping between the three different entities (Employee, Dish, Order)int
EmployeeLoader. constructObjectFromRow(java.lang.String[] tokens, java.util.ArrayList<Employee> personnel)
Adds a record in the input list given the tokens of a row.int
FullDataLoader. fullDataLoad(java.util.ArrayList<Employee> personnel, java.util.ArrayList<Dish> menu, java.util.ArrayList<Order> orders)
Loads the three different types of files and stores the data in the three different lists that receives as parameters.int
IFullDataLoader. fullDataLoad(java.util.ArrayList<Employee> personnel, java.util.ArrayList<Dish> menu, java.util.ArrayList<Order> orders)
-
Uses of Employee in dataModel
Subclasses of Employee in dataModel Modifier and Type Class Description class
Chef
Chefclass
ChefDeCuisine
ChefDeCuisineclass
SousChef
SousChefMethods in dataModel that return Employee Modifier and Type Method Description Employee
EmployeeFactory. createEmp(java.lang.String fName, java.lang.String mName, java.lang.String lName, java.lang.String type)
Creates an employee based on the typeEmployee
Order. getOrderEmp()
Methods in dataModel with parameters of type Employee Modifier and Type Method Description void
Order. setOrderEmp(Employee orderEmp)
-
Uses of Employee in mainEngine
Method parameters in mainEngine with type arguments of type Employee Modifier and Type Method Description void
IMainEngine. getEmployees(javafx.collections.ObservableList<Employee> data)
void
MainEngine. getEmployees(javafx.collections.ObservableList<Employee> data)
-
Uses of Employee in reportinEngines
Method parameters in reportinEngines with type arguments of type Employee Modifier and Type Method Description void
IReportGenerator. reportOnEmps(java.util.ArrayList<Employee> personnel)
void
ReportGeneratorForFiles. reportOnEmps(java.util.ArrayList<Employee> personnel)
Saves the statistics for the employeesvoid
ReportGeneratorForHTML. reportOnEmps(java.util.ArrayList<Employee> personnel)
Saves the statistics for the employees -
Uses of Employee in userViews
Constructor parameters in userViews with type arguments of type Employee Constructor Description EmpTableView(javafx.collections.ObservableList<Employee> data)
-