Back to project page Android-Wireless.
The source code is released under:
MIT License
If you think the Android project Android-Wireless listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.Nimble.WifiAP; //from w w w . jav a 2 s. co m import android.widget.TextView; public class ClientInfo { private String IpAddr; private String macAddr; private String connectionType; public ClientInfo(String ip, String Mac, String connection) { IpAddr = ip; macAddr = Mac; connectionType = connection; } public final void print(TextView textView) { textView.append("Client Found: \n"); textView.append("Ip Address: " + IpAddr + "\n"); textView.append("Connection Type: " + connectionType + "\n"); textView.append("Mac Address: " + macAddr + "\n"); } }