org.usb4java.javax.adapter.UsbDeviceAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of usb4java-javax Show documentation
Show all versions of usb4java-javax Show documentation
Extension for usb4java which implements javax.usb (JSR-80).
The newest version!
/*
* Copyright (C) 2013 Klaus Reimer
* See LICENSE.md for licensing information.
*/
package org.usb4java.javax.adapter;
import javax.usb.event.UsbDeviceDataEvent;
import javax.usb.event.UsbDeviceErrorEvent;
import javax.usb.event.UsbDeviceEvent;
import javax.usb.event.UsbDeviceListener;
/**
* An abstract adapter class for receiving USB device events. The methods in
* this class are empty. This class exists as convenience for creating listener
* objects.
*
* @author Klaus Reimer ([email protected])
*/
public abstract class UsbDeviceAdapter implements UsbDeviceListener
{
@Override
public void usbDeviceDetached(final UsbDeviceEvent event)
{
// Empty
}
@Override
public void errorEventOccurred(final UsbDeviceErrorEvent event)
{
// Empty
}
@Override
public void dataEventOccurred(final UsbDeviceDataEvent event)
{
// Empty
}
}