-
Notifications
You must be signed in to change notification settings - Fork 0
/
IStatistics.java
79 lines (68 loc) · 1.21 KB
/
IStatistics.java
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/*
* IStatistics.java
*
* @autor Claudio, Jerry, Francisco, Joe
* @since 5/6/2022
*/
package oober;
/**
* The Interface IStatistics.
*/
public interface IStatistics {
/**
* Gets the services.
*
* @return the services
*/
public int getServices();
/**
* Gets the reviews.
*
* @return the reviews
*/
public int getReviews();
/**
* Gets the stars.
*
* @return the stars
*/
public double getStars();
/**
* Gets the distance.
*
* @return the distance
*/
public int getDistance();
/**
* Gets the billing.
*
* @return the billing
*/
public int getBilling();
/**
* Update services.
*/
public void updateServices();
/**
* Update reviews.
*/
public void updateReviews();
/**
* Update stars.
*
* @param stars the stars
*/
public void updateStars(int stars);
/**
* Update distance.
*
* @param distance the distance
*/
public void updateDistance(int distance);
/**
* Update billing.
*
* @param billing the billing
*/
public void updateBilling(int billing);
}