Matcher matcher = urlPattern.matcher(url);
if (matcher.find())
{
//Load the corresponding pattern and download it !
IPlugin plugin = loader.getPlugin(pattern.pluginName);
//We found and loaded a plugin able to handle the link
found = true;
if (plugin != null)
{
//System.out.println(getThread() + "Using plugin " + pattern.pluginName);
List<String> urls = plugin.getLinks(url);
for (String url : urls)
{
download(url, localFolder, title, new ICallback() {
@Override
public void onDownloadFinished(File downloaded) {