Back to project page runescape-highscore.
The source code is released under:
Apache License
If you think the Android project runescape-highscore listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.rsstat.rest.api; /*from w ww . j a v a2 s . com*/ import com.rsstat.models.Triple; import java.util.ArrayList; import retrofit.Callback; import retrofit.http.GET; import retrofit.http.Query; public interface RSHighScoreAPI { final String URL = "/m=hiscore/index_lite.ws"; @GET(URL) public void getHighScore(@Query(("player")) String user, Callback<ArrayList<Triple>> callback); }