// Andrew Hoffmann // X179Emp1
public class Employee
{
    // Declares variable name, idnumber, department, and position
    private String name, department, position;
    private int idNumber;
    // Constructor
    public Employee(String nme, int id, String dep, String pos)
    {
        name = nme;
        idNumber = id;
        department = dep;
        position = pos;
    }
    // Sets employee name
    public void setName(String nme)
    {
        name = nme;
    }

    // Sets employee id number
    public void setId(int id)
    {
        idNumber = id;
    }
    // Sets department
    public void setDep(String dep)
    {
        department = dep;
    }
    // Sets position
    public void setPos(String pos)
    {
        position = pos;
    }
    // Gets name
    public String getName()
    {
        return name;
    }
    // Gets id
    public int getId()
    {
        return idNumber;
    }
    // Gets department
    public String getDep()
    {
        return department;
    }
    // Gets position
    public String  getPos()
    {
        return position;
    }
}