-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6442a62
commit 230a433
Showing
9 changed files
with
235 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package com.dwao.alium.listeners; | ||
|
||
public interface Observer { | ||
|
||
|
||
public void stop(); | ||
|
||
} |
13 changes: 13 additions & 0 deletions
13
alium/src/main/java/com/dwao/alium/listeners/SurveyConfigResponseListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.dwao.alium.listeners; | ||
|
||
import org.json.JSONObject; | ||
|
||
import retrofit2.Call; | ||
import retrofit2.http.GET; | ||
import retrofit2.http.Url; | ||
|
||
public interface SurveyConfigResponseListener { | ||
@GET | ||
Call<JSONObject> configResponse(@Url String anEmptyString); | ||
|
||
} |
10 changes: 10 additions & 0 deletions
10
alium/src/main/java/com/dwao/alium/listeners/SurveyLoader.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.dwao.alium.listeners; | ||
|
||
import com.dwao.alium.survey.AliumSurveyLoader; | ||
|
||
public interface SurveyLoader extends Observer{ | ||
public void stop(); | ||
public void addSurveyLoader(AliumSurveyLoader loader); | ||
public boolean isStopped(); | ||
public String getScreenName(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.