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

org.bidib.jbidibc.usbhid.DeviceVidPid Maven / Gradle / Ivy

package org.bidib.jbidibc.usbhid;

public class DeviceVidPid {

    private final int vid;

    private final int pid;

    public DeviceVidPid(int vid, int pid) {
        this.vid = vid;
        this.pid = pid;
    }

    /**
     * @return the vid
     */
    public int getVid() {
        return vid;
    }

    /**
     * @return the pid
     */
    public int getPid() {
        return pid;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy