From 4afd442f10cff83454d5084d6c326297a2931b6b Mon Sep 17 00:00:00 2001 From: isuPatches Date: Tue, 11 Jul 2017 08:23:50 -0500 Subject: [PATCH] Slowly getting there --- javadoc/allclasses-frame.html | 27 +- javadoc/allclasses-noframe.html | 27 +- javadoc/com/isupatches/wisefy/WiseFy.html | 944 +++++++++++++++--- .../isupatches/wisefy/WiseFy.withContext.html | 12 +- .../isupatches/wisefy/annotations/Async.html | 165 +++ .../wisefy/annotations/CallingThread.html | 165 +++ .../isupatches/wisefy/annotations/Sync.html | 165 +++ .../wisefy/annotations/WaitsForTimeout.html | 165 +++ .../wisefy/annotations/WiseFyThread.html | 165 +++ .../wisefy/annotations/package-frame.html | 24 + .../wisefy/annotations/package-summary.html | 156 +++ .../wisefy/annotations/package-tree.html | 135 +++ .../callbacks/AddOpenNetworkCallbacks.html | 245 +++++ .../callbacks/AddWEPNetworkCallbacks.html | 245 +++++ .../callbacks/AddWPA2NetworkCallbacks.html | 245 +++++ .../callbacks/ConnectToNetworkCallbacks.html | 258 +++++ .../callbacks/DisableWifiCallbacks.html | 245 +++++ ...DisconnectFromCurrentNetworkCallbacks.html | 245 +++++ .../wisefy/callbacks/EnableWifiCallbacks.html | 245 +++++ .../callbacks/GetCurrentNetworkCallbacks.html | 232 +++++ .../callbacks/GetFrequencyCallbacks.html | 245 +++++ .../GetNearbyAccessPointsCallbacks.html | 232 +++++ .../callbacks/GetSavedNetworkCallbacks.html | 245 +++++ .../callbacks/GetSavedNetworksCallbacks.html | 232 +++++ .../callbacks/RemoveNetworkCallbacks.html | 258 +++++ .../callbacks/SearchForSSIDCallbacks.html | 245 +++++ .../wisefy/callbacks/package-frame.html | 33 + .../wisefy/callbacks/package-summary.html | 192 ++++ .../wisefy/callbacks/package-tree.html | 144 +++ .../wisefy/constants/Capabilities.html | 38 +- .../wisefy/constants/NetworkTypes.html | 8 +- .../wisefy/constants/WiseFyCodes.html | 35 +- .../wisefy/constants/package-frame.html | 6 +- .../wisefy/constants/package-summary.html | 16 +- .../wisefy/constants/package-tree.html | 16 +- .../com/isupatches/wisefy/package-frame.html | 6 +- .../isupatches/wisefy/package-summary.html | 16 +- .../com/isupatches/wisefy/package-tree.html | 12 +- .../wisefy/threads/WiseFyHandlerThread.html | 378 +++++++ .../wisefy/threads/package-frame.html | 20 + .../wisefy/threads/package-summary.html | 140 +++ .../wisefy/threads/package-tree.html | 143 +++ .../com/isupatches/wisefy/util/LogUtil.html | 14 +- .../isupatches/wisefy/util/ManagerUtil.html | 8 +- .../com/isupatches/wisefy/util/SSIDUtil.html | 77 +- .../wisefy/util/WifiConfigurationUtil.html | 282 ++++++ .../isupatches/wisefy/util/package-frame.html | 7 +- .../wisefy/util/package-summary.html | 16 +- .../isupatches/wisefy/util/package-tree.html | 13 +- javadoc/constant-values.html | 39 +- javadoc/deprecated-list.html | 8 +- javadoc/help-doc.html | 8 +- javadoc/index-all.html | 300 +++++- javadoc/index.html | 4 +- javadoc/overview-frame.html | 9 +- javadoc/overview-summary.html | 22 +- javadoc/overview-tree.html | 46 +- javadoc/package-list | 3 + .../wisefy/test/IsNetworkSecureTests.java | 8 +- .../java/com/isupatches/wisefy/WiseFy.java | 815 +++++++-------- .../wisefy/constants/Capabilities.java | 4 +- 61 files changed, 7674 insertions(+), 779 deletions(-) create mode 100644 javadoc/com/isupatches/wisefy/annotations/Async.html create mode 100644 javadoc/com/isupatches/wisefy/annotations/CallingThread.html create mode 100644 javadoc/com/isupatches/wisefy/annotations/Sync.html create mode 100644 javadoc/com/isupatches/wisefy/annotations/WaitsForTimeout.html create mode 100644 javadoc/com/isupatches/wisefy/annotations/WiseFyThread.html create mode 100644 javadoc/com/isupatches/wisefy/annotations/package-frame.html create mode 100644 javadoc/com/isupatches/wisefy/annotations/package-summary.html create mode 100644 javadoc/com/isupatches/wisefy/annotations/package-tree.html create mode 100644 javadoc/com/isupatches/wisefy/callbacks/AddOpenNetworkCallbacks.html create mode 100644 javadoc/com/isupatches/wisefy/callbacks/AddWEPNetworkCallbacks.html create mode 100644 javadoc/com/isupatches/wisefy/callbacks/AddWPA2NetworkCallbacks.html create mode 100644 javadoc/com/isupatches/wisefy/callbacks/ConnectToNetworkCallbacks.html create mode 100644 javadoc/com/isupatches/wisefy/callbacks/DisableWifiCallbacks.html create mode 100644 javadoc/com/isupatches/wisefy/callbacks/DisconnectFromCurrentNetworkCallbacks.html create mode 100644 javadoc/com/isupatches/wisefy/callbacks/EnableWifiCallbacks.html create mode 100644 javadoc/com/isupatches/wisefy/callbacks/GetCurrentNetworkCallbacks.html create mode 100644 javadoc/com/isupatches/wisefy/callbacks/GetFrequencyCallbacks.html create mode 100644 javadoc/com/isupatches/wisefy/callbacks/GetNearbyAccessPointsCallbacks.html create mode 100644 javadoc/com/isupatches/wisefy/callbacks/GetSavedNetworkCallbacks.html create mode 100644 javadoc/com/isupatches/wisefy/callbacks/GetSavedNetworksCallbacks.html create mode 100644 javadoc/com/isupatches/wisefy/callbacks/RemoveNetworkCallbacks.html create mode 100644 javadoc/com/isupatches/wisefy/callbacks/SearchForSSIDCallbacks.html create mode 100644 javadoc/com/isupatches/wisefy/callbacks/package-frame.html create mode 100644 javadoc/com/isupatches/wisefy/callbacks/package-summary.html create mode 100644 javadoc/com/isupatches/wisefy/callbacks/package-tree.html create mode 100644 javadoc/com/isupatches/wisefy/threads/WiseFyHandlerThread.html create mode 100644 javadoc/com/isupatches/wisefy/threads/package-frame.html create mode 100644 javadoc/com/isupatches/wisefy/threads/package-summary.html create mode 100644 javadoc/com/isupatches/wisefy/threads/package-tree.html create mode 100644 javadoc/com/isupatches/wisefy/util/WifiConfigurationUtil.html diff --git a/javadoc/allclasses-frame.html b/javadoc/allclasses-frame.html index 77fd708d..bb9a416c 100644 --- a/javadoc/allclasses-frame.html +++ b/javadoc/allclasses-frame.html @@ -2,9 +2,9 @@ - -All Classes (wisefy 1.0.10 API) - + +All Classes (wisefy 2.0.0-BETA API) + @@ -12,14 +12,35 @@

All Classes

diff --git a/javadoc/allclasses-noframe.html b/javadoc/allclasses-noframe.html index 59b0f2e6..5f755ec2 100644 --- a/javadoc/allclasses-noframe.html +++ b/javadoc/allclasses-noframe.html @@ -2,9 +2,9 @@ - -All Classes (wisefy 1.0.10 API) - + +All Classes (wisefy 2.0.0-BETA API) + @@ -12,14 +12,35 @@

All Classes

diff --git a/javadoc/com/isupatches/wisefy/WiseFy.html b/javadoc/com/isupatches/wisefy/WiseFy.html index 8b08d5cf..e8801e66 100644 --- a/javadoc/com/isupatches/wisefy/WiseFy.html +++ b/javadoc/com/isupatches/wisefy/WiseFy.html @@ -2,9 +2,9 @@ - -WiseFy (wisefy 1.0.10 API) - + +WiseFy (wisefy 2.0.0-BETA API) + @@ -12,13 +12,13 @@ @@ -12,7 +12,7 @@ + + + + + +
+ + + + + + + +
+ + + +
+
com.isupatches.wisefy.annotations
+

Annotation Type Async

+
+
+
+
    +
  • +
    +
    +
    @Documented
    + @Target(value=METHOD)
    + @Inherited
    + @Retention(value=RUNTIME)
    +public @interface Async
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/annotations/CallingThread.html b/javadoc/com/isupatches/wisefy/annotations/CallingThread.html new file mode 100644 index 00000000..364b6d0f --- /dev/null +++ b/javadoc/com/isupatches/wisefy/annotations/CallingThread.html @@ -0,0 +1,165 @@ + + + + + +CallingThread (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.isupatches.wisefy.annotations
+

Annotation Type CallingThread

+
+
+
+
    +
  • +
    +
    +
    @Documented
    + @Target(value=METHOD)
    + @Inherited
    + @Retention(value=RUNTIME)
    +public @interface CallingThread
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/annotations/Sync.html b/javadoc/com/isupatches/wisefy/annotations/Sync.html new file mode 100644 index 00000000..b42bb448 --- /dev/null +++ b/javadoc/com/isupatches/wisefy/annotations/Sync.html @@ -0,0 +1,165 @@ + + + + + +Sync (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.isupatches.wisefy.annotations
+

Annotation Type Sync

+
+
+
+
    +
  • +
    +
    +
    @Documented
    + @Target(value=METHOD)
    + @Inherited
    + @Retention(value=RUNTIME)
    +public @interface Sync
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/annotations/WaitsForTimeout.html b/javadoc/com/isupatches/wisefy/annotations/WaitsForTimeout.html new file mode 100644 index 00000000..2c50cc02 --- /dev/null +++ b/javadoc/com/isupatches/wisefy/annotations/WaitsForTimeout.html @@ -0,0 +1,165 @@ + + + + + +WaitsForTimeout (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.isupatches.wisefy.annotations
+

Annotation Type WaitsForTimeout

+
+
+
+
    +
  • +
    +
    +
    @Documented
    + @Target(value=METHOD)
    + @Inherited
    + @Retention(value=RUNTIME)
    +public @interface WaitsForTimeout
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/annotations/WiseFyThread.html b/javadoc/com/isupatches/wisefy/annotations/WiseFyThread.html new file mode 100644 index 00000000..1d88316c --- /dev/null +++ b/javadoc/com/isupatches/wisefy/annotations/WiseFyThread.html @@ -0,0 +1,165 @@ + + + + + +WiseFyThread (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.isupatches.wisefy.annotations
+

Annotation Type WiseFyThread

+
+
+
+
    +
  • +
    +
    +
    @Documented
    + @Target(value=METHOD)
    + @Inherited
    + @Retention(value=RUNTIME)
    +public @interface WiseFyThread
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/annotations/package-frame.html b/javadoc/com/isupatches/wisefy/annotations/package-frame.html new file mode 100644 index 00000000..d4a7a265 --- /dev/null +++ b/javadoc/com/isupatches/wisefy/annotations/package-frame.html @@ -0,0 +1,24 @@ + + + + + +com.isupatches.wisefy.annotations (wisefy 2.0.0-BETA API) + + + + + +

com.isupatches.wisefy.annotations

+
+

Annotation Types

+ +
+ + diff --git a/javadoc/com/isupatches/wisefy/annotations/package-summary.html b/javadoc/com/isupatches/wisefy/annotations/package-summary.html new file mode 100644 index 00000000..3c782266 --- /dev/null +++ b/javadoc/com/isupatches/wisefy/annotations/package-summary.html @@ -0,0 +1,156 @@ + + + + + +com.isupatches.wisefy.annotations (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Package com.isupatches.wisefy.annotations

+
+
+ +
+ +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/annotations/package-tree.html b/javadoc/com/isupatches/wisefy/annotations/package-tree.html new file mode 100644 index 00000000..2c08482a --- /dev/null +++ b/javadoc/com/isupatches/wisefy/annotations/package-tree.html @@ -0,0 +1,135 @@ + + + + + +com.isupatches.wisefy.annotations Class Hierarchy (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Hierarchy For Package com.isupatches.wisefy.annotations

+Package Hierarchies: + +
+
+

Annotation Type Hierarchy

+ +
+ +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/callbacks/AddOpenNetworkCallbacks.html b/javadoc/com/isupatches/wisefy/callbacks/AddOpenNetworkCallbacks.html new file mode 100644 index 00000000..14f7a9e9 --- /dev/null +++ b/javadoc/com/isupatches/wisefy/callbacks/AddOpenNetworkCallbacks.html @@ -0,0 +1,245 @@ + + + + + +AddOpenNetworkCallbacks (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.isupatches.wisefy.callbacks
+

Interface AddOpenNetworkCallbacks

+
+
+
+
    +
  • +
    +
    +
    public interface AddOpenNetworkCallbacks
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        addOpenNetworkWiseFyFailure

        +
        void addOpenNetworkWiseFyFailure(java.lang.Integer wisefyReturnCode)
        +
      • +
      + + + +
        +
      • +

        failureAddingOpenNetwork

        +
        void failureAddingOpenNetwork(java.lang.Integer wifiManagerReturnCode)
        +
      • +
      + + + +
        +
      • +

        openNetworkAdded

        +
        void openNetworkAdded(android.net.wifi.WifiConfiguration wifiConfiguration)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/callbacks/AddWEPNetworkCallbacks.html b/javadoc/com/isupatches/wisefy/callbacks/AddWEPNetworkCallbacks.html new file mode 100644 index 00000000..75b947c0 --- /dev/null +++ b/javadoc/com/isupatches/wisefy/callbacks/AddWEPNetworkCallbacks.html @@ -0,0 +1,245 @@ + + + + + +AddWEPNetworkCallbacks (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.isupatches.wisefy.callbacks
+

Interface AddWEPNetworkCallbacks

+
+
+
+
    +
  • +
    +
    +
    public interface AddWEPNetworkCallbacks
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        addWEPNetworkWiseFyFailure

        +
        void addWEPNetworkWiseFyFailure(java.lang.Integer wisefyReturnCode)
        +
      • +
      + + + +
        +
      • +

        failureAddingWEPNetwork

        +
        void failureAddingWEPNetwork(java.lang.Integer wifiManagerReturnCode)
        +
      • +
      + + + +
        +
      • +

        wepNetworkAdded

        +
        void wepNetworkAdded(android.net.wifi.WifiConfiguration wifiConfiguration)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/callbacks/AddWPA2NetworkCallbacks.html b/javadoc/com/isupatches/wisefy/callbacks/AddWPA2NetworkCallbacks.html new file mode 100644 index 00000000..b75cb2f7 --- /dev/null +++ b/javadoc/com/isupatches/wisefy/callbacks/AddWPA2NetworkCallbacks.html @@ -0,0 +1,245 @@ + + + + + +AddWPA2NetworkCallbacks (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.isupatches.wisefy.callbacks
+

Interface AddWPA2NetworkCallbacks

+
+
+
+
    +
  • +
    +
    +
    public interface AddWPA2NetworkCallbacks
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        addWPA2NetworkWiseFyFailure

        +
        void addWPA2NetworkWiseFyFailure(java.lang.Integer wisefyReturnCode)
        +
      • +
      + + + +
        +
      • +

        failureAddingWPA2Network

        +
        void failureAddingWPA2Network(java.lang.Integer wifiManagerReturnCode)
        +
      • +
      + + + +
        +
      • +

        wpa2NetworkAdded

        +
        void wpa2NetworkAdded(android.net.wifi.WifiConfiguration wifiConfiguration)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/callbacks/ConnectToNetworkCallbacks.html b/javadoc/com/isupatches/wisefy/callbacks/ConnectToNetworkCallbacks.html new file mode 100644 index 00000000..a45c240e --- /dev/null +++ b/javadoc/com/isupatches/wisefy/callbacks/ConnectToNetworkCallbacks.html @@ -0,0 +1,258 @@ + + + + + +ConnectToNetworkCallbacks (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.isupatches.wisefy.callbacks
+

Interface ConnectToNetworkCallbacks

+
+
+
+
    +
  • +
    +
    +
    public interface ConnectToNetworkCallbacks
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        connectedToNetwork

        +
        void connectedToNetwork()
        +
      • +
      + + + +
        +
      • +

        connectToNetworkWiseFyFailure

        +
        void connectToNetworkWiseFyFailure(java.lang.Integer wisefyReturnCode)
        +
      • +
      + + + +
        +
      • +

        failureConnectingToNetwork

        +
        void failureConnectingToNetwork()
        +
      • +
      + + + +
        +
      • +

        networkNotFoundToConnectTo

        +
        void networkNotFoundToConnectTo()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/callbacks/DisableWifiCallbacks.html b/javadoc/com/isupatches/wisefy/callbacks/DisableWifiCallbacks.html new file mode 100644 index 00000000..40d53833 --- /dev/null +++ b/javadoc/com/isupatches/wisefy/callbacks/DisableWifiCallbacks.html @@ -0,0 +1,245 @@ + + + + + +DisableWifiCallbacks (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.isupatches.wisefy.callbacks
+

Interface DisableWifiCallbacks

+
+
+
+
    +
  • +
    +
    +
    public interface DisableWifiCallbacks
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        disableWifiWiseFyFailure

        +
        void disableWifiWiseFyFailure(java.lang.Integer wisefyReturnCode)
        +
      • +
      + + + +
        +
      • +

        failureDisablingWifi

        +
        void failureDisablingWifi()
        +
      • +
      + + + +
        +
      • +

        wifiDisabled

        +
        void wifiDisabled()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/callbacks/DisconnectFromCurrentNetworkCallbacks.html b/javadoc/com/isupatches/wisefy/callbacks/DisconnectFromCurrentNetworkCallbacks.html new file mode 100644 index 00000000..1d8c064f --- /dev/null +++ b/javadoc/com/isupatches/wisefy/callbacks/DisconnectFromCurrentNetworkCallbacks.html @@ -0,0 +1,245 @@ + + + + + +DisconnectFromCurrentNetworkCallbacks (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.isupatches.wisefy.callbacks
+

Interface DisconnectFromCurrentNetworkCallbacks

+
+
+
+
    +
  • +
    +
    +
    public interface DisconnectFromCurrentNetworkCallbacks
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        disconnectedFromCurrentNetwork

        +
        void disconnectedFromCurrentNetwork()
        +
      • +
      + + + +
        +
      • +

        disconnectFromCurrentNetworkWiseFyFailure

        +
        void disconnectFromCurrentNetworkWiseFyFailure(java.lang.Integer wisefyReturnCode)
        +
      • +
      + + + +
        +
      • +

        failureDisconnectingFromCurrentNetwork

        +
        void failureDisconnectingFromCurrentNetwork()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/callbacks/EnableWifiCallbacks.html b/javadoc/com/isupatches/wisefy/callbacks/EnableWifiCallbacks.html new file mode 100644 index 00000000..a032b8bc --- /dev/null +++ b/javadoc/com/isupatches/wisefy/callbacks/EnableWifiCallbacks.html @@ -0,0 +1,245 @@ + + + + + +EnableWifiCallbacks (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.isupatches.wisefy.callbacks
+

Interface EnableWifiCallbacks

+
+
+
+
    +
  • +
    +
    +
    public interface EnableWifiCallbacks
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        enableWifiWiseFyFailure

        +
        void enableWifiWiseFyFailure(java.lang.Integer wisefyReturnCode)
        +
      • +
      + + + +
        +
      • +

        failureEnablingWifi

        +
        void failureEnablingWifi()
        +
      • +
      + + + +
        +
      • +

        wifiEnabled

        +
        void wifiEnabled()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/callbacks/GetCurrentNetworkCallbacks.html b/javadoc/com/isupatches/wisefy/callbacks/GetCurrentNetworkCallbacks.html new file mode 100644 index 00000000..acd8866d --- /dev/null +++ b/javadoc/com/isupatches/wisefy/callbacks/GetCurrentNetworkCallbacks.html @@ -0,0 +1,232 @@ + + + + + +GetCurrentNetworkCallbacks (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.isupatches.wisefy.callbacks
+

Interface GetCurrentNetworkCallbacks

+
+
+
+
    +
  • +
    +
    +
    public interface GetCurrentNetworkCallbacks
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getCurrentNetworkWiseFyFailure

        +
        void getCurrentNetworkWiseFyFailure(java.lang.Integer wisefyReturnCode)
        +
      • +
      + + + +
        +
      • +

        retrievedCurrentNetwork

        +
        void retrievedCurrentNetwork(android.net.wifi.WifiInfo currentNetwork)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/callbacks/GetFrequencyCallbacks.html b/javadoc/com/isupatches/wisefy/callbacks/GetFrequencyCallbacks.html new file mode 100644 index 00000000..f61199f3 --- /dev/null +++ b/javadoc/com/isupatches/wisefy/callbacks/GetFrequencyCallbacks.html @@ -0,0 +1,245 @@ + + + + + +GetFrequencyCallbacks (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.isupatches.wisefy.callbacks
+

Interface GetFrequencyCallbacks

+
+
+
+
    +
  • +
    +
    +
    public interface GetFrequencyCallbacks
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        failureGettingFrequency

        +
        void failureGettingFrequency()
        +
      • +
      + + + +
        +
      • +

        getFrequencyWiseFyFailure

        +
        void getFrequencyWiseFyFailure(java.lang.Integer wisefyReturnCode)
        +
      • +
      + + + +
        +
      • +

        retrievedFrequency

        +
        void retrievedFrequency(int frequency)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/callbacks/GetNearbyAccessPointsCallbacks.html b/javadoc/com/isupatches/wisefy/callbacks/GetNearbyAccessPointsCallbacks.html new file mode 100644 index 00000000..25bda0df --- /dev/null +++ b/javadoc/com/isupatches/wisefy/callbacks/GetNearbyAccessPointsCallbacks.html @@ -0,0 +1,232 @@ + + + + + +GetNearbyAccessPointsCallbacks (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.isupatches.wisefy.callbacks
+

Interface GetNearbyAccessPointsCallbacks

+
+
+
+
    +
  • +
    +
    +
    public interface GetNearbyAccessPointsCallbacks
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getNearbyAccessPointsWiseFyFailure

        +
        void getNearbyAccessPointsWiseFyFailure(java.lang.Integer wisefyReturnCode)
        +
      • +
      + + + +
        +
      • +

        retrievedNearbyAccessPoints

        +
        void retrievedNearbyAccessPoints(java.util.List<android.net.wifi.ScanResult> nearbyAccessPoints)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/callbacks/GetSavedNetworkCallbacks.html b/javadoc/com/isupatches/wisefy/callbacks/GetSavedNetworkCallbacks.html new file mode 100644 index 00000000..d7c0dc4f --- /dev/null +++ b/javadoc/com/isupatches/wisefy/callbacks/GetSavedNetworkCallbacks.html @@ -0,0 +1,245 @@ + + + + + +GetSavedNetworkCallbacks (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.isupatches.wisefy.callbacks
+

Interface GetSavedNetworkCallbacks

+
+
+
+
    +
  • +
    +
    +
    public interface GetSavedNetworkCallbacks
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getSavedNetworkWiseFyFailure

        +
        void getSavedNetworkWiseFyFailure(java.lang.Integer wisefyReturnCode)
        +
      • +
      + + + +
        +
      • +

        networkNotFound

        +
        void networkNotFound()
        +
      • +
      + + + +
        +
      • +

        retrievedSavedNetwork

        +
        void retrievedSavedNetwork(android.net.wifi.WifiConfiguration savedNetwork)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/callbacks/GetSavedNetworksCallbacks.html b/javadoc/com/isupatches/wisefy/callbacks/GetSavedNetworksCallbacks.html new file mode 100644 index 00000000..7b755328 --- /dev/null +++ b/javadoc/com/isupatches/wisefy/callbacks/GetSavedNetworksCallbacks.html @@ -0,0 +1,232 @@ + + + + + +GetSavedNetworksCallbacks (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.isupatches.wisefy.callbacks
+

Interface GetSavedNetworksCallbacks

+
+
+
+
    +
  • +
    +
    +
    public interface GetSavedNetworksCallbacks
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getSavedNetworksWiseFyFailure

        +
        void getSavedNetworksWiseFyFailure(java.lang.Integer wisefyReturnCode)
        +
      • +
      + + + +
        +
      • +

        retrievedSavedNetworks

        +
        void retrievedSavedNetworks(java.util.List<android.net.wifi.WifiConfiguration> savedNetworks)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/callbacks/RemoveNetworkCallbacks.html b/javadoc/com/isupatches/wisefy/callbacks/RemoveNetworkCallbacks.html new file mode 100644 index 00000000..e6c5163a --- /dev/null +++ b/javadoc/com/isupatches/wisefy/callbacks/RemoveNetworkCallbacks.html @@ -0,0 +1,258 @@ + + + + + +RemoveNetworkCallbacks (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.isupatches.wisefy.callbacks
+

Interface RemoveNetworkCallbacks

+
+
+
+
    +
  • +
    +
    +
    public interface RemoveNetworkCallbacks
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        failureRemovingNetwork

        +
        void failureRemovingNetwork()
        +
      • +
      + + + +
        +
      • +

        networkNotFoundToRemove

        +
        void networkNotFoundToRemove()
        +
      • +
      + + + +
        +
      • +

        networkRemoved

        +
        void networkRemoved()
        +
      • +
      + + + +
        +
      • +

        removeNetworkWiseFyFailure

        +
        void removeNetworkWiseFyFailure(java.lang.Integer wisefyReturnCode)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/callbacks/SearchForSSIDCallbacks.html b/javadoc/com/isupatches/wisefy/callbacks/SearchForSSIDCallbacks.html new file mode 100644 index 00000000..e0377ed5 --- /dev/null +++ b/javadoc/com/isupatches/wisefy/callbacks/SearchForSSIDCallbacks.html @@ -0,0 +1,245 @@ + + + + + +SearchForSSIDCallbacks (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + + +
+
com.isupatches.wisefy.callbacks
+

Interface SearchForSSIDCallbacks

+
+
+
+
    +
  • +
    +
    +
    public interface SearchForSSIDCallbacks
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        searchForSSIDWiseFyFailure

        +
        void searchForSSIDWiseFyFailure(java.lang.Integer wisefyReturnCode)
        +
      • +
      + + + +
        +
      • +

        ssidFound

        +
        void ssidFound(java.lang.String ssid)
        +
      • +
      + + + +
        +
      • +

        ssidNotFound

        +
        void ssidNotFound()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/callbacks/package-frame.html b/javadoc/com/isupatches/wisefy/callbacks/package-frame.html new file mode 100644 index 00000000..8bdc3106 --- /dev/null +++ b/javadoc/com/isupatches/wisefy/callbacks/package-frame.html @@ -0,0 +1,33 @@ + + + + + +com.isupatches.wisefy.callbacks (wisefy 2.0.0-BETA API) + + + + + +

com.isupatches.wisefy.callbacks

+
+

Interfaces

+ +
+ + diff --git a/javadoc/com/isupatches/wisefy/callbacks/package-summary.html b/javadoc/com/isupatches/wisefy/callbacks/package-summary.html new file mode 100644 index 00000000..7e330991 --- /dev/null +++ b/javadoc/com/isupatches/wisefy/callbacks/package-summary.html @@ -0,0 +1,192 @@ + + + + + +com.isupatches.wisefy.callbacks (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Package com.isupatches.wisefy.callbacks

+
+
+ +
+ +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/callbacks/package-tree.html b/javadoc/com/isupatches/wisefy/callbacks/package-tree.html new file mode 100644 index 00000000..6d3bebcf --- /dev/null +++ b/javadoc/com/isupatches/wisefy/callbacks/package-tree.html @@ -0,0 +1,144 @@ + + + + + +com.isupatches.wisefy.callbacks Class Hierarchy (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Hierarchy For Package com.isupatches.wisefy.callbacks

+Package Hierarchies: + +
+
+

Interface Hierarchy

+ +
+ +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/constants/Capabilities.html b/javadoc/com/isupatches/wisefy/constants/Capabilities.html index d24d4abd..1e16ab11 100644 --- a/javadoc/com/isupatches/wisefy/constants/Capabilities.html +++ b/javadoc/com/isupatches/wisefy/constants/Capabilities.html @@ -2,9 +2,9 @@ - -Capabilities (wisefy 1.0.10 API) - + +Capabilities (wisefy 2.0.0-BETA API) + @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ diff --git a/javadoc/com/isupatches/wisefy/constants/package-summary.html b/javadoc/com/isupatches/wisefy/constants/package-summary.html index b47a13cf..8de4b9d3 100644 --- a/javadoc/com/isupatches/wisefy/constants/package-summary.html +++ b/javadoc/com/isupatches/wisefy/constants/package-summary.html @@ -2,9 +2,9 @@ - -com.isupatches.wisefy.constants (wisefy 1.0.10 API) - + +com.isupatches.wisefy.constants (wisefy 2.0.0-BETA API) + @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ diff --git a/javadoc/com/isupatches/wisefy/package-summary.html b/javadoc/com/isupatches/wisefy/package-summary.html index 527b5c17..71345a5d 100644 --- a/javadoc/com/isupatches/wisefy/package-summary.html +++ b/javadoc/com/isupatches/wisefy/package-summary.html @@ -2,9 +2,9 @@ - -com.isupatches.wisefy (wisefy 1.0.10 API) - + +com.isupatches.wisefy (wisefy 2.0.0-BETA API) + @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ + + + + + +
+ + + + + + + +
+ + + +
+
com.isupatches.wisefy.threads
+

Class WiseFyHandlerThread

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.lang.Runnable
    +
    +
    +
    +
    public class WiseFyHandlerThread
    +extends android.os.HandlerThread
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Nested Class Summary

      +
        +
      • + + +

        Nested classes/interfaces inherited from class java.lang.Thread

        +java.lang.Thread.State, java.lang.Thread.UncaughtExceptionHandler
      • +
      +
    • +
    + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      static java.lang.StringTAG 
      +
        +
      • + + +

        Fields inherited from class java.lang.Thread

        +MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      WiseFyHandlerThread(java.lang.String name, + boolean loggingEnabled) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      All Methods Instance Methods Concrete Methods 
      Modifier and TypeMethod and Description
      booleanquitSafely() 
      voidstart() 
      +
        +
      • + + +

        Methods inherited from class android.os.HandlerThread

        +getLooper, getThreadId, onLooperPrepared, quit, run
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Thread

        +activeCount, checkAccess, clone, countStackFrames, currentThread, destroy, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, stop, stop, suspend, toString, yield
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        TAG

        +
        public static final java.lang.String TAG
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        WiseFyHandlerThread

        +
        public WiseFyHandlerThread(java.lang.String name,
        +                           boolean loggingEnabled)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        start

        +
        public void start()
        +
        +
        Overrides:
        +
        start in class java.lang.Thread
        +
        +
      • +
      + + + +
        +
      • +

        quitSafely

        +
        public boolean quitSafely()
        +
        +
        Overrides:
        +
        quitSafely in class android.os.HandlerThread
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/threads/package-frame.html b/javadoc/com/isupatches/wisefy/threads/package-frame.html new file mode 100644 index 00000000..3f36b62e --- /dev/null +++ b/javadoc/com/isupatches/wisefy/threads/package-frame.html @@ -0,0 +1,20 @@ + + + + + +com.isupatches.wisefy.threads (wisefy 2.0.0-BETA API) + + + + + +

com.isupatches.wisefy.threads

+
+

Classes

+ +
+ + diff --git a/javadoc/com/isupatches/wisefy/threads/package-summary.html b/javadoc/com/isupatches/wisefy/threads/package-summary.html new file mode 100644 index 00000000..df5d8a45 --- /dev/null +++ b/javadoc/com/isupatches/wisefy/threads/package-summary.html @@ -0,0 +1,140 @@ + + + + + +com.isupatches.wisefy.threads (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Package com.isupatches.wisefy.threads

+
+
+ +
+ +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/threads/package-tree.html b/javadoc/com/isupatches/wisefy/threads/package-tree.html new file mode 100644 index 00000000..a68cc1d7 --- /dev/null +++ b/javadoc/com/isupatches/wisefy/threads/package-tree.html @@ -0,0 +1,143 @@ + + + + + +com.isupatches.wisefy.threads Class Hierarchy (wisefy 2.0.0-BETA API) + + + + + + + + +
+ + + + + + + +
+ + +
+

Hierarchy For Package com.isupatches.wisefy.threads

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + + + +
+ + + + diff --git a/javadoc/com/isupatches/wisefy/util/LogUtil.html b/javadoc/com/isupatches/wisefy/util/LogUtil.html index 74358849..b3d70cc6 100644 --- a/javadoc/com/isupatches/wisefy/util/LogUtil.html +++ b/javadoc/com/isupatches/wisefy/util/LogUtil.html @@ -2,9 +2,9 @@ - -LogUtil (wisefy 1.0.10 API) - + +LogUtil (wisefy 2.0.0-BETA API) + @@ -12,7 +12,7 @@ @@ -12,7 +12,7 @@ @@ -12,18 +12,12 @@