Package captureplugin.utils

Examples of captureplugin.utils.ExternalChannelIf


     * @see captureplugin.drivers.DeviceIf#remove(java.awt.Window,devplugin.Program)
     */
    public boolean remove(Window parent, Program program) {
        for (ProgramTime time : mProgramTimeList) {
            if (time.getProgram().equals(program)) {
                ExternalChannelIf channel = mConfig.getExternalChannel(program.getChannel());
                if (channel != null) {
                    DreamboxConnector connector = new DreamboxConnector(mConfig);
                    return connector.removeRecording((DreamboxChannel) channel, time, mConfig.getTimeZone());
                }
            }
View Full Code Here

TOP

Related Classes of captureplugin.utils.ExternalChannelIf

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.