Package captureplugin.drivers.defaultdriver

Examples of captureplugin.drivers.defaultdriver.DefaultDriver


   * @return All available Drivers
   */
  public DriverIf[] getDrivers() {
    ArrayList<DriverIf> drivers = new ArrayList<DriverIf>();

    drivers.add(new DefaultDriver());
    drivers.add(new DreamboxDriver());
    drivers.add(new TopfieldDriver());

    if (OperatingSystem.isMacOs()) {
      try {
View Full Code Here

TOP

Related Classes of captureplugin.drivers.defaultdriver.DefaultDriver

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.