Package Manager

Examples of Manager.ConfigManager


        List<VideoFileVO> movieList = new ArrayList<VideoFileVO>();
        if (!hasMovieFile(download))
            return null;

        // if we use the language name on subtitle file name
        ConfigManager config = new ConfigManager(pluginInterface);
        SubTitleLanguage subTitleLanguage = null;
        if (config.getUseLanguageOnSubtitle())
            subTitleLanguage = config.getLanguageOnSubtitle();

        for (DiskManagerFileInfo fileTorrent : download.getDiskManagerFileInfo()) {
            if ((!fileTorrent.isSkipped()) && (!fileTorrent.isDeleted()) && (FileUtils.isMovieFile(fileTorrent.getFile().getName()))) {
                VideoFileVO movieVO = VoUtils.fileToMovieVO(fileTorrent.getFile(), subTitleLanguage);
                movieList.add(movieVO);
View Full Code Here


        }
    }
   
    public DownloadPeriodThread(PluginInterface pluginInterface) {
        super(pluginInterface);
        _configManager = new ConfigManager(pluginInterface);
    }
View Full Code Here

TOP

Related Classes of Manager.ConfigManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.