Package captureplugin.drivers.simpledevice

Examples of captureplugin.drivers.simpledevice.SimpleDevice


public class ElgatoDriver implements DriverIf {
  /** Translator */
  private static final Localizer mLocalizer = Localizer.getLocalizerFor(ElgatoDriver.class);
 
  public DeviceIf createDevice(String name) {
    return new SimpleDevice(new ElgatoConnection(), this, name);
  }
View Full Code Here


    public String getDriverDesc() {
        return mLocalizer.msg("desc", "Description");
    }

    public DeviceIf createDevice(String name) {
        return new SimpleDevice(new TheTubeConnection(), this, name);
     }
View Full Code Here

TOP

Related Classes of captureplugin.drivers.simpledevice.SimpleDevice

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.