Back to project page helsinki-testbed2-android.
The source code is released under:
GNU General Public License
If you think the Android project helsinki-testbed2-android 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 fi.testbed2.service; //from ww w. j a v a 2 s.co m import fi.testbed2.android.task.Task; import fi.testbed2.android.task.exception.DownloadTaskException; import fi.testbed2.domain.TestbedParsedPage; public interface PageService { /** * Use this to initialize the page object for the service. * @param url * @param task * @return * @throws fi.testbed2.android.task.exception.DownloadTaskException */ public TestbedParsedPage downloadAndParseTestbedPage(final String url, Task task) throws DownloadTaskException; public TestbedParsedPage getTestbedParsedPage(); public int getNotDownloadedImagesCount(); public void evictPage(); }