|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||
This report was generated with an evaluation server license. Purchase Clover or configure your license. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IAdEvent | Line # 3 | 0 | 0 | - |
-1.0
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
No Tests | |||
1 | package com.dreamcatcher.bicycle.interfaces; | |
2 | ||
3 | public interface IAdEvent { | |
4 | /** | |
5 | * get point successful | |
6 | * @param currencyName | |
7 | * @param totalPoint | |
8 | */ | |
9 | public void onPointsUpdated(String currencyName, int totalPoint); | |
10 | ||
11 | /** | |
12 | * get point failed | |
13 | * @param error | |
14 | */ | |
15 | public void onPointsUpdateFailed(String error); | |
16 | } |
|