package company;
import java.util.Date;
public class Secretary extends Employee
{
public Secretary(String n, double s, Date d, int ts)
{
super(n, s, d);
}
public int getTypingSpeed()
{
return m_typingSpeed;
}
public void setTypingSpeed(int ts)
{
m_typingSpeed = ts;
}
//////////// Data //////////////////
private int m_typingSpeed;
}
|