Skip to content

Commit 3537834

Browse files
committed
Change javax.usb wording to javax-usb
1 parent 4ca2b16 commit 3537834

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ See LICENSE.md for licensing information.
1111

1212
This library can be used to access USB devices in Java. It is based on the
1313
native libusb 1.0 shared library and reflects this API as complete as
14-
possible. usb4java also implements the javax.usb (JSR80) API. So you can choose
14+
possible. usb4java also implements the javax-usb (JSR80) API. So you can choose
1515
if you want to access the USB devices via the low-level libusb 1.0 API or
16-
via the high level javax.usb API.
16+
via the high level javax-usb API.
1717

1818
The native libraries are included in pre-compiled form for Linux, Windows and
1919
Mac OS X in 32 and 64 bit versions. The libraries are automatically extracted

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<version>1.2.1-SNAPSHOT</version>
1010
<url>http://usb4java.org/</url>
1111
<description>
12-
USB library for Java based on libusb and implementing javax.usb (JSR-80).
12+
USB library for Java based on libusb and implementing javax-usb (JSR-80).
1313
</description>
1414
<inceptionYear>2011</inceptionYear>
1515
<organization>

src/changes/changes.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<release version="1.2.0" date="2013-02-16" description="Major update">
1212
<action dev="kayahr" type="update" date="2014-02-16">
1313
Split project into usb4java (Main library), usb4java-javax
14-
(javax.usb extension) and libusb4java (Native code).
14+
(javax-usb extension) and libusb4java (Native code).
1515
</action>
1616
<action dev="llongi" type="add" date="2013-09-14">
1717
Add hotplug support to low-level API.
@@ -65,7 +65,7 @@
6565
they are not in a JAR file.
6666
</action>
6767
<action dev="kayahr" type="fix" date="2013-02-18">
68-
Improve error handling during native lib loading so javax.usb no
68+
Improve error handling during native lib loading so javax-usb no
6969
longer hides the important exceptions.
7070
</action>
7171
<action dev="kayahr" type="fix" date="2013-02-20">

src/site/apt/configuration.apt.vm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Configuration
1111

1212
* Selecting usb4java as javax-usb implementation
1313

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

5252
+----+
5353
((org.usb4java.javax.Services) UsbHostManager.getUsbServices()).scan();

src/site/site.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
</head>
2222

2323
<links>
24-
<item name="javax.usb" href="http://javax-usb.sourceforge.net/" />
24+
<item name="javax-usb" href="http://javax-usb.sourceforge.net/" />
2525
<item name="libusb" href="http://libusb.info/" />
2626
</links>
2727

0 commit comments

Comments
 (0)