Package | Description |
---|---|
dataLoad | |
dataModel | |
mainEngine | |
reportinEngines | |
userViews |
Modifier and Type | Method and 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 |
IFullDataLoader.fullDataLoad(java.util.ArrayList<Employee> personnel,
java.util.ArrayList<Dish> menu,
java.util.ArrayList<Order> orders) |
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.
|
Modifier and Type | Class and Description |
---|---|
class |
Chef
Chef
Class responsible for handling the information
about a chef.
|
class |
ChefDeCuisine
ChefDeCuisine
Class responsible for handling the information
about a chef de cuisine.
|
class |
SousChef
SousChef
Class responsible for handling the information
about a sous chef.
|
Modifier and Type | Method and 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 type
|
Employee |
Order.getOrderEmp() |
Modifier and Type | Method and Description |
---|---|
void |
Order.setOrderEmp(Employee orderEmp) |
Modifier and Type | Method and Description |
---|---|
void |
MainEngine.getEmployees(javafx.collections.ObservableList<Employee> data) |
void |
IMainEngine.getEmployees(javafx.collections.ObservableList<Employee> data) |
Modifier and Type | Method and Description |
---|---|
void |
ReportGeneratorForHTML.reportOnEmps(java.util.ArrayList<Employee> personnel)
Saves the statistics for the employees
|
void |
ReportGeneratorForFiles.reportOnEmps(java.util.ArrayList<Employee> personnel)
Saves the statistics for the employees
|
void |
IReportGenerator.reportOnEmps(java.util.ArrayList<Employee> personnel) |
Constructor and Description |
---|
EmpTableView(javafx.collections.ObservableList<Employee> data) |