Skip to content

Commit

Permalink
Simple clean and documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinStyk committed May 3, 2016
1 parent 091b930 commit 95e2355
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import org.slf4j.LoggerFactory;

/**
* Download task for one file. Can e executed concurrently
*
* @author Martin Styk
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,20 @@
*/
public interface ApkLinkFinder {

public List<String> findLinks();
/**
* Finds links to APK files
* @return List of URLs to APK files
*/
List<String> findLinks();

public void setMetadataFile(File metadataFile);
/**
* Sets metadata file. Only used with Playdron
* @param metadataFile metadata file containing links to APKs
*/
void setMetadataFile(File metadataFile);

public void setNumberOfApks(int numberOfApks);
/**
* @param numberOfApks number of APKs we want to download
*/
void setNumberOfApks(int numberOfApks);
}

0 comments on commit 95e2355

Please sign in to comment.