All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.usb4java.javax.adapter.UsbPipeAdapter Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2013 Klaus Reimer 
 * See LICENSE.md for licensing information.
 */

package org.usb4java.javax.adapter;

import javax.usb.event.UsbPipeDataEvent;
import javax.usb.event.UsbPipeErrorEvent;
import javax.usb.event.UsbPipeListener;

/**
 * An abstract adapter class for receiving USB pipe 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 UsbPipeAdapter implements UsbPipeListener
{
    @Override
    public void errorEventOccurred(final UsbPipeErrorEvent event)
    {
        // Empty
    }

    @Override
    public void dataEventOccurred(final UsbPipeDataEvent event)
    {
        // Empty
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy