From 8360c8e9e2067daa6af6456a5c0e77988fc56390 Mon Sep 17 00:00:00 2001 From: Jason Leyba Date: Thu, 17 Jul 2014 10:50:37 -0700 Subject: [PATCH] Fix javadoc formatting. --- .../src/org/openqa/selenium/mobile/NetworkConnection.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/java/client/src/org/openqa/selenium/mobile/NetworkConnection.java b/java/client/src/org/openqa/selenium/mobile/NetworkConnection.java index fac687d767354..471b2c4ce9f66 100644 --- a/java/client/src/org/openqa/selenium/mobile/NetworkConnection.java +++ b/java/client/src/org/openqa/selenium/mobile/NetworkConnection.java @@ -34,15 +34,17 @@ public interface NetworkConnection { /** * ConnectionType is a bitmask to represent a device's network connection + *

    * Data  | WIFI | Airplane
    * 0       0      1         == 1
    * 1       1      0         == 6
    * 1       0      0         == 4
    * 0       1      0         == 2
    * 0       0      0         == 0
+   * 
* - * Giving "Data" the first bit positions in order to give room for the future of enabling - * specific types of data (Edge / 2G, 3G, 4G, LTE, etc) if the device allows it. + *

Giving "Data" the first bit positions in order to give room for the future of enabling + * specific types of data (Edge / 2G, 3G, 4G, LTE, etc) if the device allows it. */ public class ConnectionType { public static final ConnectionType WIFI = new ConnectionType(2);