Back to project page watchme.
The source code is released under:
Copyright (c) 2012 Johan Brook, Robin Andersson, Lisa Stenberg, Mattias Henriksson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documen...
If you think the Android project watchme listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * MovieSource.java/*from w w w . j a va 2 s . com*/ * * @author Johan Brook * @copyright (c) 2012 Johan Brook, Robin Andersson, Lisa Stenberg, Mattias Henriksson * @license MIT */ package se.chalmers.watchme.net; import org.json.JSONArray; import org.json.JSONObject; public interface MovieSource { public JSONArray getMoviesByTitle(String title); public JSONObject getMovieByIMDBID(String id); public JSONObject getMovieById(int id); }