Skip to content

Commit 28c346a

Browse files
committed
Updated to Version 1.3.1 and removed lib directory
Signed-off-by: Joshua Gager <[email protected]>
1 parent 5c5ccd3 commit 28c346a

File tree

225 files changed

+1293
-1115
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

225 files changed

+1293
-1115
lines changed

Changelog.txt

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1-
Version 1.3.0.0 changes (3/31/2017):
1+
Version 1.3.1 changes (4/5/2017):
2+
* Added FXML Dialog Wrapper
3+
* JavaDocs documentation is improved
4+
* Pom file is improved and updated
5+
* Now hosted on Maven Central
6+
7+
Version 1.3.0 changes (3/31/2017):
28
* Added MessageBox and Login dialog objects
39
* Added Static Class Instantiation Protection
410
* Added Database Tools classes (Includes SQLite and H2 databases)
511
* All dependencies are now included in jar file
612
* JavaDocs documentation is improved
713

8-
Version 1.2.0.0 changes (02/22/2017):
14+
Version 1.2.0 changes (02/22/2017):
915
* Fixed ComputerNameActive and ComputerNamePending not returning accurate value
1016
* Added ComputerInfo Class
1117
* Fixed a naming bug since version 1.1 that caused an infinite loop
@@ -14,11 +20,11 @@ Version 1.2.0.0 changes (02/22/2017):
1420
* Fixed error with RSA generate key pair, it didn't check if save to files was true
1521
* Fixed error with ConvertBytes function not returning accurate value
1622

17-
Version 1.1.0.0 changes (02/18/2017):
23+
Version 1.1.0 changes (02/18/2017):
1824
* Created OSInfo, HWInfo, SecurityTools and WebTools classes instead of packages to improve importing.
1925
* Renamed StringExpanded2 to StringExpandedFromRegistry.
2026
* Moved tools.osinfo.Enums to just tools.Enums.
2127
* Finalized JavaDocs. Everything is documented correctly now.
2228

23-
Version 1.0.0.0 changes (02/13/2017):
29+
Version 1.0.0 changes (02/13/2017):
2430
* Initial Release

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
1-
# JavaUltimateTools v1.3.0 [![Build Status](https://travis-ci.org/JGCompTech/JavaUltimateTools.svg?branch=master)](https://travis-ci.org/JGCompTech/JavaUltimateTools) [![Dependency Status](https://www.versioneye.com/user/projects/58e2fbb124ef3e003b526de5/badge.svg?style=flat-square)](https://www.versioneye.com/user/projects/58e2fbb124ef3e003b526de5) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.jgcomptech.tools/java-ultimate-tools/badge.svg?style=flat-square)](https://maven-badges.herokuapp.com/maven-central/com.jgcomptech.tools/java-ultimate-tools/) [![Javadocs](http://www.javadoc.io/badge/com.jgcomptech.tools/java-ultimate-tools.svg?style=flat-square)](http://www.javadoc.io/doc/com.jgcomptech.tools/java-ultimate-tools)
1+
# JavaUltimateTools v1.3.1 [![Build Status](https://travis-ci.org/JGCompTech/JavaUltimateTools.svg?branch=master)](https://travis-ci.org/JGCompTech/JavaUltimateTools) [![Dependency Status](https://www.versioneye.com/user/projects/58e2fbb124ef3e003b526de5/badge.svg?style=flat-square)](https://www.versioneye.com/user/projects/58e2fbb124ef3e003b526de5) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.jgcomptech.tools/java-ultimate-tools/badge.svg?style=flat-square)](https://maven-badges.herokuapp.com/maven-central/com.jgcomptech.tools/java-ultimate-tools/) [![Javadocs](http://www.javadoc.io/badge/com.jgcomptech.tools/java-ultimate-tools.svg?style=flat-square)](http://www.javadoc.io/doc/com.jgcomptech.tools/java-ultimate-tools)
22

33
JavaUltimateTools is a large repository of scripts for use in any Java program. It contains the following:
44
- OSInfo - Contains many classes that return information about the current Windows installation. This includes Architecture, Edition, Name, Product Key, Service Pack, User Info and Version.
55
- HWInfo - Contains many classes that return information about the current computer hardware. This includes BIOS, Network, OEM, Processor, RAM and Storage.
66
- SecurityTools - Contains methods surrounding hashing and encryption. Includes methods using MD5, SHA1, SHA256, SHA384 and SHA512. Also includes encryption/decryption with RSA.
77
- CommandInfo - Allows you to run any console command and will return the result to a string to use within your program. You can also run the command elevated and it will open in a new cmd window and show the results. Note: If elevated, result cannot be returned as a string.
88
- MessageBox and Login dialogs - Dialogs to use in JavaFX applications
9+
- FXML Dialog Wrapper - Class to wrap a FXML dialog object, reducing the amount of required code
910
- DatabaseTools - Allows communication with SQLite and H2 databases
1011
- And Much More!
1112

1213
If you would like a more details check out the [CLASSDESCRIPTION.md](https://github.com/JGCompTech/JavaUltimateTools/blob/master/CLASSDESCRIPTION.md) file. I will be updating this with more documentation soon.
1314

14-
If you would like to view the JavaDoc info it is hosted at [github.io](https://jgcomptech.github.io/JavaUltimateTools/) and at [javadoc.io](http://www.javadoc.io/doc/com.jgcomptech.tools/java-ultimate-tools). This is what is stored in the doc folder in the project.
15+
If you would like to view the JavaDoc info it is hosted at [github.io(Current GitHub Branch)](https://jgcomptech.github.io/JavaUltimateTools/) and at [javadoc.io(Current Maven Release)](http://www.javadoc.io/doc/com.jgcomptech.tools/java-ultimate-tools). The github.io version is what is stored in the doc folder in the project.
1516

1617
# Development
1718
Want to contribute? Great!
1819
Any help with development is greatly appreciated. If you want to add something or fix any typos please submit a pull request and if it is helpful it may be merged. Please check out our [Code of Conduct for Contributors](https://github.com/JGCompTech/JavaUltimateTools/blob/master/code-of-conduct.md).
1920

2021
# Download
21-
**[Download v1.3.0](https://github.com/JGCompTech/JavaUltimateTools/releases/tag/v1.3)**
22+
**[Download v1.3.1](https://github.com/JGCompTech/JavaUltimateTools/releases/tag/v1.3.1)**
2223

2324
The changelog can be found [here](https://github.com/JGCompTech/JavaUltimateTools/blob/master/Changelog.txt)
2425

@@ -30,7 +31,7 @@ fragments into your pom.xml file. With those settings, your Maven will automatic
3031
<dependency>
3132
<groupId>com.jgcomptech.tools</groupId>
3233
<artifactId>java-ultimate-tools</artifactId>
33-
<version>1.3.0</version>
34+
<version>1.3.1</version>
3435
</dependency>
3536
</dependencies>
3637

docs/allclasses-frame.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_121) on Tue Apr 04 22:30:05 EDT 2017 -->
5+
<!-- Generated by javadoc (1.8.0_121) on Wed Apr 05 17:35:56 EDT 2017 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>All Classes (com.jgcomptech.tools:java-ultimate-tools 1.3.0 API)</title>
8-
<meta name="date" content="2017-04-04">
7+
<title>All Classes (Java Ultimate Tools 1.3.1 API)</title>
8+
<meta name="date" content="2017-04-05">
99
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
1010
<script type="text/javascript" src="script.js"></script>
1111
</head>

docs/allclasses-noframe.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_121) on Tue Apr 04 22:30:05 EDT 2017 -->
5+
<!-- Generated by javadoc (1.8.0_121) on Wed Apr 05 17:35:56 EDT 2017 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>All Classes (com.jgcomptech.tools:java-ultimate-tools 1.3.0 API)</title>
8-
<meta name="date" content="2017-04-04">
7+
<title>All Classes (Java Ultimate Tools 1.3.1 API)</title>
8+
<meta name="date" content="2017-04-05">
99
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
1010
<script type="text/javascript" src="script.js"></script>
1111
</head>

docs/com/jgcomptech/tools/CommandInfo.Output.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_121) on Tue Apr 04 22:30:03 EDT 2017 -->
5+
<!-- Generated by javadoc (1.8.0_121) on Wed Apr 05 17:35:51 EDT 2017 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>CommandInfo.Output (com.jgcomptech.tools:java-ultimate-tools 1.3.0 API)</title>
8-
<meta name="date" content="2017-04-04">
7+
<title>CommandInfo.Output (Java Ultimate Tools 1.3.1 API)</title>
8+
<meta name="date" content="2017-04-05">
99
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
1010
<script type="text/javascript" src="../../../script.js"></script>
1111
</head>
1212
<body>
1313
<script type="text/javascript"><!--
1414
try {
1515
if (location.href.indexOf('is-external=true') == -1) {
16-
parent.document.title="CommandInfo.Output (com.jgcomptech.tools:java-ultimate-tools 1.3.0 API)";
16+
parent.document.title="CommandInfo.Output (Java Ultimate Tools 1.3.1 API)";
1717
}
1818
}
1919
catch(err) {
@@ -332,6 +332,6 @@ <h4>print</h4>
332332
<!-- -->
333333
</a></div>
334334
<!-- ======== END OF BOTTOM NAVBAR ======= -->
335-
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
335+
<p class="legalCopy"><small>Copyright &#169; 2017 <a href="https://github.com/JGCompTech">J&G CompTech</a>. All rights reserved.</small></p>
336336
</body>
337337
</html>

docs/com/jgcomptech/tools/CommandInfo.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_121) on Tue Apr 04 22:30:03 EDT 2017 -->
5+
<!-- Generated by javadoc (1.8.0_121) on Wed Apr 05 17:35:51 EDT 2017 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>CommandInfo (com.jgcomptech.tools:java-ultimate-tools 1.3.0 API)</title>
8-
<meta name="date" content="2017-04-04">
7+
<title>CommandInfo (Java Ultimate Tools 1.3.1 API)</title>
8+
<meta name="date" content="2017-04-05">
99
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
1010
<script type="text/javascript" src="../../../script.js"></script>
1111
</head>
1212
<body>
1313
<script type="text/javascript"><!--
1414
try {
1515
if (location.href.indexOf('is-external=true') == -1) {
16-
parent.document.title="CommandInfo (com.jgcomptech.tools:java-ultimate-tools 1.3.0 API)";
16+
parent.document.title="CommandInfo (Java Ultimate Tools 1.3.1 API)";
1717
}
1818
}
1919
catch(err) {
@@ -349,6 +349,6 @@ <h4>Run</h4>
349349
<!-- -->
350350
</a></div>
351351
<!-- ======== END OF BOTTOM NAVBAR ======= -->
352-
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
352+
<p class="legalCopy"><small>Copyright &#169; 2017 <a href="https://github.com/JGCompTech">J&G CompTech</a>. All rights reserved.</small></p>
353353
</body>
354354
</html>

docs/com/jgcomptech/tools/ComputerInfo.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_121) on Tue Apr 04 22:30:03 EDT 2017 -->
5+
<!-- Generated by javadoc (1.8.0_121) on Wed Apr 05 17:35:51 EDT 2017 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>ComputerInfo (com.jgcomptech.tools:java-ultimate-tools 1.3.0 API)</title>
8-
<meta name="date" content="2017-04-04">
7+
<title>ComputerInfo (Java Ultimate Tools 1.3.1 API)</title>
8+
<meta name="date" content="2017-04-05">
99
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
1010
<script type="text/javascript" src="../../../script.js"></script>
1111
</head>
1212
<body>
1313
<script type="text/javascript"><!--
1414
try {
1515
if (location.href.indexOf('is-external=true') == -1) {
16-
parent.document.title="ComputerInfo (com.jgcomptech.tools:java-ultimate-tools 1.3.0 API)";
16+
parent.document.title="ComputerInfo (Java Ultimate Tools 1.3.1 API)";
1717
}
1818
}
1919
catch(err) {
@@ -354,6 +354,6 @@ <h4>ReInitalizeHW</h4>
354354
<!-- -->
355355
</a></div>
356356
<!-- ======== END OF BOTTOM NAVBAR ======= -->
357-
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
357+
<p class="legalCopy"><small>Copyright &#169; 2017 <a href="https://github.com/JGCompTech">J&G CompTech</a>. All rights reserved.</small></p>
358358
</body>
359359
</html>

docs/com/jgcomptech/tools/HWInfo.BIOS.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_121) on Tue Apr 04 22:30:03 EDT 2017 -->
5+
<!-- Generated by javadoc (1.8.0_121) on Wed Apr 05 17:35:51 EDT 2017 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>HWInfo.BIOS (com.jgcomptech.tools:java-ultimate-tools 1.3.0 API)</title>
8-
<meta name="date" content="2017-04-04">
7+
<title>HWInfo.BIOS (Java Ultimate Tools 1.3.1 API)</title>
8+
<meta name="date" content="2017-04-05">
99
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
1010
<script type="text/javascript" src="../../../script.js"></script>
1111
</head>
1212
<body>
1313
<script type="text/javascript"><!--
1414
try {
1515
if (location.href.indexOf('is-external=true') == -1) {
16-
parent.document.title="HWInfo.BIOS (com.jgcomptech.tools:java-ultimate-tools 1.3.0 API)";
16+
parent.document.title="HWInfo.BIOS (Java Ultimate Tools 1.3.1 API)";
1717
}
1818
}
1919
catch(err) {
@@ -290,6 +290,6 @@ <h4>getVendor</h4>
290290
<!-- -->
291291
</a></div>
292292
<!-- ======== END OF BOTTOM NAVBAR ======= -->
293-
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
293+
<p class="legalCopy"><small>Copyright &#169; 2017 <a href="https://github.com/JGCompTech">J&G CompTech</a>. All rights reserved.</small></p>
294294
</body>
295295
</html>

docs/com/jgcomptech/tools/HWInfo.BIOSObject.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_121) on Tue Apr 04 22:30:03 EDT 2017 -->
5+
<!-- Generated by javadoc (1.8.0_121) on Wed Apr 05 17:35:51 EDT 2017 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>HWInfo.BIOSObject (com.jgcomptech.tools:java-ultimate-tools 1.3.0 API)</title>
8-
<meta name="date" content="2017-04-04">
7+
<title>HWInfo.BIOSObject (Java Ultimate Tools 1.3.1 API)</title>
8+
<meta name="date" content="2017-04-05">
99
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
1010
<script type="text/javascript" src="../../../script.js"></script>
1111
</head>
1212
<body>
1313
<script type="text/javascript"><!--
1414
try {
1515
if (location.href.indexOf('is-external=true') == -1) {
16-
parent.document.title="HWInfo.BIOSObject (com.jgcomptech.tools:java-ultimate-tools 1.3.0 API)";
16+
parent.document.title="HWInfo.BIOSObject (Java Ultimate Tools 1.3.1 API)";
1717
}
1818
}
1919
catch(err) {
@@ -316,6 +316,6 @@ <h4>Version</h4>
316316
<!-- -->
317317
</a></div>
318318
<!-- ======== END OF BOTTOM NAVBAR ======= -->
319-
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
319+
<p class="legalCopy"><small>Copyright &#169; 2017 <a href="https://github.com/JGCompTech">J&G CompTech</a>. All rights reserved.</small></p>
320320
</body>
321321
</html>

docs/com/jgcomptech/tools/HWInfo.DriveObject.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_121) on Tue Apr 04 22:30:03 EDT 2017 -->
5+
<!-- Generated by javadoc (1.8.0_121) on Wed Apr 05 17:35:51 EDT 2017 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>HWInfo.DriveObject (com.jgcomptech.tools:java-ultimate-tools 1.3.0 API)</title>
8-
<meta name="date" content="2017-04-04">
7+
<title>HWInfo.DriveObject (Java Ultimate Tools 1.3.1 API)</title>
8+
<meta name="date" content="2017-04-05">
99
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
1010
<script type="text/javascript" src="../../../script.js"></script>
1111
</head>
1212
<body>
1313
<script type="text/javascript"><!--
1414
try {
1515
if (location.href.indexOf('is-external=true') == -1) {
16-
parent.document.title="HWInfo.DriveObject (com.jgcomptech.tools:java-ultimate-tools 1.3.0 API)";
16+
parent.document.title="HWInfo.DriveObject (Java Ultimate Tools 1.3.1 API)";
1717
}
1818
}
1919
catch(err) {
@@ -303,6 +303,6 @@ <h4>TotalFree</h4>
303303
<!-- -->
304304
</a></div>
305305
<!-- ======== END OF BOTTOM NAVBAR ======= -->
306-
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
306+
<p class="legalCopy"><small>Copyright &#169; 2017 <a href="https://github.com/JGCompTech">J&G CompTech</a>. All rights reserved.</small></p>
307307
</body>
308308
</html>

docs/com/jgcomptech/tools/HWInfo.HWObject.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_121) on Tue Apr 04 22:30:03 EDT 2017 -->
5+
<!-- Generated by javadoc (1.8.0_121) on Wed Apr 05 17:35:51 EDT 2017 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>HWInfo.HWObject (com.jgcomptech.tools:java-ultimate-tools 1.3.0 API)</title>
8-
<meta name="date" content="2017-04-04">
7+
<title>HWInfo.HWObject (Java Ultimate Tools 1.3.1 API)</title>
8+
<meta name="date" content="2017-04-05">
99
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
1010
<script type="text/javascript" src="../../../script.js"></script>
1111
</head>
1212
<body>
1313
<script type="text/javascript"><!--
1414
try {
1515
if (location.href.indexOf('is-external=true') == -1) {
16-
parent.document.title="HWInfo.HWObject (com.jgcomptech.tools:java-ultimate-tools 1.3.0 API)";
16+
parent.document.title="HWInfo.HWObject (Java Ultimate Tools 1.3.1 API)";
1717
}
1818
}
1919
catch(err) {
@@ -355,6 +355,6 @@ <h4>Storage</h4>
355355
<!-- -->
356356
</a></div>
357357
<!-- ======== END OF BOTTOM NAVBAR ======= -->
358-
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
358+
<p class="legalCopy"><small>Copyright &#169; 2017 <a href="https://github.com/JGCompTech">J&G CompTech</a>. All rights reserved.</small></p>
359359
</body>
360360
</html>

docs/com/jgcomptech/tools/HWInfo.Network.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_121) on Tue Apr 04 22:30:03 EDT 2017 -->
5+
<!-- Generated by javadoc (1.8.0_121) on Wed Apr 05 17:35:51 EDT 2017 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>HWInfo.Network (com.jgcomptech.tools:java-ultimate-tools 1.3.0 API)</title>
8-
<meta name="date" content="2017-04-04">
7+
<title>HWInfo.Network (Java Ultimate Tools 1.3.1 API)</title>
8+
<meta name="date" content="2017-04-05">
99
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
1010
<script type="text/javascript" src="../../../script.js"></script>
1111
</head>
1212
<body>
1313
<script type="text/javascript"><!--
1414
try {
1515
if (location.href.indexOf('is-external=true') == -1) {
16-
parent.document.title="HWInfo.Network (com.jgcomptech.tools:java-ultimate-tools 1.3.0 API)";
16+
parent.document.title="HWInfo.Network (Java Ultimate Tools 1.3.1 API)";
1717
}
1818
}
1919
catch(err) {
@@ -290,6 +290,6 @@ <h4>isConnectedToInternet</h4>
290290
<!-- -->
291291
</a></div>
292292
<!-- ======== END OF BOTTOM NAVBAR ======= -->
293-
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
293+
<p class="legalCopy"><small>Copyright &#169; 2017 <a href="https://github.com/JGCompTech">J&G CompTech</a>. All rights reserved.</small></p>
294294
</body>
295295
</html>

docs/com/jgcomptech/tools/HWInfo.NetworkObject.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
<!-- NewPage -->
33
<html lang="en">
44
<head>
5-
<!-- Generated by javadoc (1.8.0_121) on Tue Apr 04 22:30:03 EDT 2017 -->
5+
<!-- Generated by javadoc (1.8.0_121) on Wed Apr 05 17:35:51 EDT 2017 -->
66
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
7-
<title>HWInfo.NetworkObject (com.jgcomptech.tools:java-ultimate-tools 1.3.0 API)</title>
8-
<meta name="date" content="2017-04-04">
7+
<title>HWInfo.NetworkObject (Java Ultimate Tools 1.3.1 API)</title>
8+
<meta name="date" content="2017-04-05">
99
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
1010
<script type="text/javascript" src="../../../script.js"></script>
1111
</head>
1212
<body>
1313
<script type="text/javascript"><!--
1414
try {
1515
if (location.href.indexOf('is-external=true') == -1) {
16-
parent.document.title="HWInfo.NetworkObject (com.jgcomptech.tools:java-ultimate-tools 1.3.0 API)";
16+
parent.document.title="HWInfo.NetworkObject (Java Ultimate Tools 1.3.1 API)";
1717
}
1818
}
1919
catch(err) {
@@ -303,6 +303,6 @@ <h4>ConnectionStatus</h4>
303303
<!-- -->
304304
</a></div>
305305
<!-- ======== END OF BOTTOM NAVBAR ======= -->
306-
<p class="legalCopy"><small>Copyright &#169; 2017. All rights reserved.</small></p>
306+
<p class="legalCopy"><small>Copyright &#169; 2017 <a href="https://github.com/JGCompTech">J&G CompTech</a>. All rights reserved.</small></p>
307307
</body>
308308
</html>

0 commit comments

Comments
 (0)