comment cleanup

git-svn-id: https://svn.code.sf.net/p/libusbjava/code/trunk@265 94ad28fe-ef68-46b1-9651-e7ae4fcf1c4c
This commit is contained in:
spandi
2008-02-06 21:31:36 +00:00
parent 4c25d9fed0
commit 23f1164d44
15 changed files with 0 additions and 27 deletions

View File

@@ -3,7 +3,6 @@
ch.ntb.usb
Ant tasks for ch.ntb.usb
schlaepfer
====================================================================== -->
<project name="ch.ntb.usb" basedir="." default="javadoc">
<description>

View File

@@ -9,7 +9,6 @@
must be set on the command line
(e.g. -Dproject.server.username=X as jvm command line argument).
schlaepfer
====================================================================== -->
<project name="ch.ntb.usb.deployment" basedir=".">
<description>

View File

@@ -16,7 +16,6 @@ import ch.ntb.usb.logger.LogUtil;
* This class represents an USB device.<br>
* To get an instance of an USB device use <code>USB.getDevice(...)</code>.
*
* @author schlaepfer
*/
public class Device {

View File

@@ -27,8 +27,6 @@ package ch.ntb.usb;
* href="http://libusb.sourceforge.net/documentation.html">libusb documentation</a>
* and adapted where neccessary.<br>
*
* @author schlaepfer
*
*/
public class LibusbJava {

View File

@@ -16,8 +16,6 @@ import ch.ntb.usb.logger.LogUtil;
/**
* This class manages all USB devices and defines some USB specific constants.<br>
*
* @author schlaepfer
*
*/
public class USB {

View File

@@ -12,8 +12,6 @@ package ch.ntb.usb;
* This is the root class for the representation of the libusb USB structure.
* Zero or more devices may be connected to an USB bus.
*
* @author schlaepfer
*
*/
public class Usb_Bus {

View File

@@ -15,8 +15,6 @@ package ch.ntb.usb;
* {@link ch.ntb.usb.Usb_Descriptor#USB_DT_CONFIG_SIZE} and the type is
* {@link ch.ntb.usb.Usb_Descriptor#USB_DT_CONFIG}.
*
* @author schlaepfer
*
*/
public class Usb_Config_Descriptor extends Usb_Descriptor {

View File

@@ -10,8 +10,6 @@ package ch.ntb.usb;
/**
* Common USB descriptor values.<br>
*
* @author schlaepfer
*
*/
public class Usb_Descriptor {

View File

@@ -12,8 +12,6 @@ package ch.ntb.usb;
* An USB device has one device descriptor and it may have multiple
* configuration descriptors.
*
* @author schlaepfer
*
*/
public class Usb_Device {

View File

@@ -16,8 +16,6 @@ package ch.ntb.usb;
* {@link ch.ntb.usb.Usb_Descriptor#USB_DT_DEVICE_SIZE} and the type is
* {@link ch.ntb.usb.Usb_Descriptor#USB_DT_DEVICE}.
*
* @author schlaepfer
*
*/
public class Usb_Device_Descriptor extends Usb_Descriptor {
/**

View File

@@ -19,8 +19,6 @@ package ch.ntb.usb;
* {@link ch.ntb.usb.Usb_Descriptor#USB_DT_ENDPOINT_SIZE} and the type is
* {@link ch.ntb.usb.Usb_Descriptor#USB_DT_ENDPOINT}.
*
* @author schlaepfer
*
*/
public class Usb_Endpoint_Descriptor extends Usb_Descriptor {

View File

@@ -11,8 +11,6 @@ package ch.ntb.usb;
* Represents an USB interface.<br>
* An interface is a group of alternate settings of a configuration.<br>
*
* @author schlaepfer
*
*/
public class Usb_Interface {

View File

@@ -16,8 +16,6 @@ package ch.ntb.usb;
* {@link ch.ntb.usb.Usb_Descriptor#USB_DT_INTERFACE_SIZE} and the type is
* {@link ch.ntb.usb.Usb_Descriptor#USB_DT_INTERFACE}.
*
* @author schlaepfer
*
*/
public class Usb_Interface_Descriptor extends Usb_Descriptor {

View File

@@ -16,8 +16,6 @@ import ch.ntb.usb.Utils;
* standard out.<br>
*
*
* @author schlaepfer
*
*/
public class LogBus {

View File

@@ -14,8 +14,6 @@ import ch.ntb.usb.USBException;
/**
* Demo class to demonstrate simple read and write operations to an USB device.<br>
*
* @author schlaepfer
*
*/
public class ReadWrite {