- mcdp renamed to java
git-svn-id: https://svn.code.sf.net/p/libusbjava/code/trunk@144 94ad28fe-ef68-46b1-9651-e7ae4fcf1c4c
This commit is contained in:
17
java/src/ch/ntb/usb/Usb_Interface.java
Normal file
17
java/src/ch/ntb/usb/Usb_Interface.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package ch.ntb.usb;
|
||||
|
||||
public class Usb_Interface {
|
||||
public static final int USB_MAXALTSETTING = 128; /* Hard limit */
|
||||
|
||||
public Usb_Interface_Descriptor[] altsetting;
|
||||
|
||||
public int num_altsetting;
|
||||
|
||||
public String toString() {
|
||||
StringBuffer sb = new StringBuffer();
|
||||
sb.append("** Usb_Interface **\n");
|
||||
sb.append("\tnum_altsetting: " + num_altsetting + "\n");
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user