forked from caalvar13/Manager_System
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDriver.java
More file actions
36 lines (25 loc) · 656 Bytes
/
Driver.java
File metadata and controls
36 lines (25 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*PLEASE DO NOT EDIT THIS CODE*/
/*This code was generated using the UMPLE 1.31.1.5860.78bb27cc6 modeling language!*/
// line 86 "model.ump"
// line 182 "model.ump"
public class Driver extends Employee
{
//------------------------
// MEMBER VARIABLES
//------------------------
//------------------------
// CONSTRUCTOR
//------------------------
public Driver(String aName, double aSalary, double aHoursWorked)
{
name = aName;
salary = aSalary;
hoursWorked = aHoursWorked;
}
//------------------------
// INTERFACE
//------------------------
// line 92 "model.ump"
private void deliverOrder(){
}
}