blob: 47cc2c995f8de8b63bd1a4335df584eda8bb53a4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
package design.model.statistics;
import design.model.Course;
public class CourseStats extends StatisticsDecorator{
private Course course;
public CourseStats(Statistics wrapped_statistics, Course course){
super(wrapped_statistics);
this.course = course;
}
@Override
public int get_score(){
return super.get_score();
}
@Override
public double get_distance(){
return super.get_distance();
}
}
|