|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||
This report was generated with an evaluation server license. Purchase Clover or configure your license. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IAdService | Line # 3 | 0 | 0 | - |
-1.0
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
No Tests | |||
1 | package com.dreamcatcher.bicycle.interfaces; | |
2 | ||
3 | public interface IAdService { | |
4 | /** | |
5 | * get point from server | |
6 | */ | |
7 | public void getPoints(); | |
8 | ||
9 | /** | |
10 | * spend some point | |
11 | * @param point | |
12 | */ | |
13 | public void spendPoints(int point); | |
14 | ||
15 | /** | |
16 | * award some point to user | |
17 | * @param point | |
18 | */ | |
19 | public void awardPoint(int point); | |
20 | } |
|