summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Dickow <jjdickow@gmail.com>2014-04-16 15:08:13 -0400
committerJustin Dickow <jjdickow@gmail.com>2014-04-16 15:08:13 -0400
commit43eff3c40013eb5ac5859bf67cd3e48e0a459730 (patch)
tree99249ded2372dbefc68cdd7096a1c0875ab7cd94
parentcbf39a743e3824e81b6c9c9036a39eff697c7fa0 (diff)
downloadsmartdevicelink-release_2.0_deprecated.tar.gz
SmartDeviceLinkConnectState renamedrelease_2.0_deprecatedrelease_2.0
Signed-off-by: Justin Dickow <jjdickow@gmail.com>
-rwxr-xr-xSDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/SmartDeviceLinkProxyBase.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/SmartDeviceLinkProxyBase.java b/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/SmartDeviceLinkProxyBase.java
index 66d41b80c..e25a01d34 100755
--- a/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/SmartDeviceLinkProxyBase.java
+++ b/SDL_Android/SmartDeviceLinkProxyAndroid/src/com/smartdevicelink/proxy/SmartDeviceLinkProxyBase.java
@@ -46,10 +46,10 @@ import com.smartdevicelink.proxy.rpc.enums.ImageType;
import com.smartdevicelink.proxy.rpc.enums.InteractionMode;
import com.smartdevicelink.proxy.rpc.enums.Language;
import com.smartdevicelink.proxy.rpc.enums.SamplingRate;
-import com.smartdevicelink.proxy.rpc.enums.SpeechCapabilities;
-import com.smartdevicelink.proxy.rpc.enums.smartDeviceLinkConnectionState;
+import com.smartdevicelink.proxy.rpc.enums.SmartDeviceLinkConnectionState;
import com.smartdevicelink.proxy.rpc.enums.SmartDeviceLinkDisconnectedReason;
import com.smartdevicelink.proxy.rpc.enums.SmartDeviceLinkInterfaceAvailability;
+import com.smartdevicelink.proxy.rpc.enums.SpeechCapabilities;
import com.smartdevicelink.proxy.rpc.enums.SystemContext;
import com.smartdevicelink.proxy.rpc.enums.TextAlignment;
import com.smartdevicelink.proxy.rpc.enums.UpdateMode;
@@ -131,7 +131,7 @@ public abstract class SmartDeviceLinkProxyBase<proxyListenerType extends IProxyL
protected Boolean _haveReceivedFirstFocusLevel = false;
protected Boolean _haveReceivedFirstFocusLevelFull = false;
protected Boolean _proxyDisposed = false;
- protected smartDeviceLinkConnectionState _smartDeviceLinkConnectionState = null;
+ protected SmartDeviceLinkConnectionState _smartDeviceLinkConnectionState = null;
protected SmartDeviceLinkInterfaceAvailability _smartDeviceLinkIntefaceAvailablity = null;
protected HMILevel _hmiLevel = null;
private HMILevel _priorHmiLevel = null;
@@ -802,7 +802,7 @@ public abstract class SmartDeviceLinkProxyBase<proxyListenerType extends IProxyL
// ALM Specific Cleanup
if (_advancedLifecycleManagementEnabled) {
- _smartDeviceLinkConnectionState = smartDeviceLinkConnectionState.SMARTDEVICELINK_DISCONNECTED;
+ _smartDeviceLinkConnectionState = SmartDeviceLinkConnectionState.SMARTDEVICELINK_DISCONNECTED;
firstTimeFull = true;
@@ -1180,7 +1180,7 @@ public abstract class SmartDeviceLinkProxyBase<proxyListenerType extends IProxyL
DebugTool.logInfo(sVersionInfo, false);
// Send onSmartDeviceLinkConnected message in ALM
- _smartDeviceLinkConnectionState = smartDeviceLinkConnectionState.SMARTDEVICELINK_CONNECTED;
+ _smartDeviceLinkConnectionState = SmartDeviceLinkConnectionState.SMARTDEVICELINK_CONNECTED;
// If registerAppInterface failed, exit with OnProxyUnusable
if (!msg.getSuccess()) {
@@ -1294,7 +1294,7 @@ public abstract class SmartDeviceLinkProxyBase<proxyListenerType extends IProxyL
if (_advancedLifecycleManagementEnabled) {
// Send onSmartDeviceLinkConnected message in ALM
- _smartDeviceLinkConnectionState = smartDeviceLinkConnectionState.SMARTDEVICELINK_CONNECTED;
+ _smartDeviceLinkConnectionState = SmartDeviceLinkConnectionState.SMARTDEVICELINK_CONNECTED;
// If registerAppInterface failed, exit with OnProxyUnusable
if (!msg.getSuccess()) {