1package patterns.composite;
2
3import java.util.List;
4
5public interface Employee {
6
7 String getName();
8
9 void add(Employee e);
10
11 void remove(Employee e);
12
13 List<Employee> getEmployees();
14
15 int calculatePoints();
16
17}