Package cnadeau.driver.stub

Source Code of cnadeau.driver.stub.StubCM19AUsbDeviceLookup

package cnadeau.driver.stub;

import java.io.UnsupportedEncodingException;

import javax.usb.UsbException;

import cnadeau.driver.CM19AUsbDeviceLookup;
import cnadeau.driver.UsbInterfaceInfos;
import cnadeau.driver.exceptions.CM19AException;

public class StubCM19AUsbDeviceLookup implements CM19AUsbDeviceLookup
{

  @Override
  public UsbInterfaceInfos findCM19ADevice() throws CM19AException, UsbException, UnsupportedEncodingException
  {
    return new UsbInterfaceInfos(new StubUsbInterface());
  }

}
TOP

Related Classes of cnadeau.driver.stub.StubCM19AUsbDeviceLookup

TOP
Copyright © 2018 www.massapi.com. 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.