Back to project page android_device.
The source code is released under:
[Apache License](http://www.apache.org/licenses/): Version 2.0, January 2004 =============== ## TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION ## ### 1. Definitions. ### "License" sha...
If you think the Android project android_device listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * ================================================================================================= * Copyright (C) 2013 - 2014 Martin Albedinsky [Wolf-ITechnologies] * ================================================================================================= * Licensed under the Apache License, Version 2.0 or later (further "License" only). * ------------------------------------------------------------------------------------------------- * You may use this file only in compliance with the License. More details and copy of this License * you may obtain at// w w w.j a va2 s .c o m * * http://www.apache.org/licenses/LICENSE-2.0 * * You can redistribute, modify or publish any part of the code written within this file but as it * is described in the License, the software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES or CONDITIONS OF ANY KIND. * * See the License for the specific language governing permissions and limitations under the License. * ================================================================================================= */ package com.wit.android.device.examples.model; import android.net.NetworkInfo; import com.wit.android.device.Connection; import java.text.SimpleDateFormat; import java.util.Date; /** * <p> * Description. * </p> * * @author Martin Albedinsky */ public class ConnectionInfo { /** * Log TAG. */ private static final String TAG = ConnectionInfo.class.getSimpleName(); private static final SimpleDateFormat TIME_FORMAT = new SimpleDateFormat("[MM/dd/yyyy hh:mm:ss]"); private Connection.ConnectionType mType, mLostType; private NetworkInfo mInfo; private String mTime; public ConnectionInfo() { this(null, null); } /** * * @param type * @param info */ public ConnectionInfo(Connection.ConnectionType type, NetworkInfo info) { this.mType = type; this.mInfo = info; this.mTime = TIME_FORMAT.format(new Date(System.currentTimeMillis())); } /** * * @return */ public String getTime() { return mTime; } /** * * @return */ public boolean isConnected() { return mType != null && mType != Connection.ConnectionType.UNAVAILABLE; } /** * * @return */ public Connection.ConnectionType getType() { return mType; } /** * * @param lostType */ public void setLostType(Connection.ConnectionType lostType) { this.mLostType = lostType; } /** * * @return */ public Connection.ConnectionType getLostType() { return mLostType; } /** * * @return */ public NetworkInfo getInfo() { return mInfo; } }