Change javax.usb wording to javax-usb

This commit is contained in:
Klaus Reimer 2014-03-19 21:19:46 +01:00
parent 4ca2b16ef9
commit 3537834e94
5 changed files with 8 additions and 8 deletions

View File

@ -11,9 +11,9 @@ See LICENSE.md for licensing information.
This library can be used to access USB devices in Java. It is based on the
native libusb 1.0 shared library and reflects this API as complete as
possible. usb4java also implements the javax.usb (JSR80) API. So you can choose
possible. usb4java also implements the javax-usb (JSR80) API. So you can choose
if you want to access the USB devices via the low-level libusb 1.0 API or
via the high level javax.usb API.
via the high level javax-usb API.
The native libraries are included in pre-compiled form for Linux, Windows and
Mac OS X in 32 and 64 bit versions. The libraries are automatically extracted

View File

@ -9,7 +9,7 @@
<version>1.2.1-SNAPSHOT</version>
<url>http://usb4java.org/</url>
<description>
USB library for Java based on libusb and implementing javax.usb (JSR-80).
USB library for Java based on libusb and implementing javax-usb (JSR-80).
</description>
<inceptionYear>2011</inceptionYear>
<organization>

View File

@ -11,7 +11,7 @@
<release version="1.2.0" date="2013-02-16" description="Major update">
<action dev="kayahr" type="update" date="2014-02-16">
Split project into usb4java (Main library), usb4java-javax
(javax.usb extension) and libusb4java (Native code).
(javax-usb extension) and libusb4java (Native code).
</action>
<action dev="llongi" type="add" date="2013-09-14">
Add hotplug support to low-level API.
@ -65,7 +65,7 @@
they are not in a JAR file.
</action>
<action dev="kayahr" type="fix" date="2013-02-18">
Improve error handling during native lib loading so javax.usb no
Improve error handling during native lib loading so javax-usb no
longer hides the important exceptions.
</action>
<action dev="kayahr" type="fix" date="2013-02-20">

View File

@ -11,7 +11,7 @@ Configuration
* Selecting usb4java as javax-usb implementation
To tell the USB Host Manager of <javax.usb> to use the <usb4java>
To tell the USB Host Manager of <javax-usb> to use the <usb4java>
implementation you have to put the following property into the
<javax.usb.properties> file which must be located in the root of
your classpath:
@ -47,7 +47,7 @@ org.usb4java.javax.scanInterval = 1000
When you set this interval to 0 then <usb4java> only scans once during
application startup. If you want to trigger a manual device <scan> you can
do it by calling the scan method on the USB services class (Must be casted
to the <usb4java> implementation, because this is not a javax.usb feature:
to the <usb4java> implementation, because this is not a javax-usb feature:
+----+
((org.usb4java.javax.Services) UsbHostManager.getUsbServices()).scan();

View File

@ -21,7 +21,7 @@
</head>
<links>
<item name="javax.usb" href="http://javax-usb.sourceforge.net/" />
<item name="javax-usb" href="http://javax-usb.sourceforge.net/" />
<item name="libusb" href="http://libusb.info/" />
</links>