Android Open Source - networkScanner Device






From Project

Back to project page networkScanner.

License

The source code is released under:

Apache License

If you think the Android project networkScanner listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.unwind.netTools.model;
/*from  w  w w .j ava  2  s  .  c o m*/
import android.os.Parcel;
import android.os.Parcelable;

/**
 * Created by dan on 10/24/14.
 */
public class Device{
    private String ipAddress;
    private String deviceName;
    private String macAddress;

    public Device(String ipAddress, String macAddress, String deviceName) {
        this.ipAddress = ipAddress;
        this.macAddress = macAddress;
        this.deviceName = deviceName;
    }

    public Device() {
        this.ipAddress = String.valueOf("");
        this.macAddress = String.valueOf("");
        this.deviceName = String.valueOf("");
    }
    public String getIpAddress() {
        return ipAddress;
    }

    public void setIpAddress(String ipAddress) {
        this.ipAddress = ipAddress;
    }

    public String getDeviceName() {
        return deviceName;
    }

    public void setDeviceName(String deviceName) {
        this.deviceName = deviceName;
    }

    public String getMacAddress() {
        return macAddress;
    }

    public void setMacAddress(String macAddress) {
        this.macAddress = macAddress;
    }
}




Java Source Code List

com.unwind.netTools.DiscoverRunner.java
com.unwind.netTools.Pinger.java
com.unwind.netTools.model.Device.java
com.unwind.networkmonitor.ApplicationTest.java
com.unwind.networkmonitor.NetDeviceAdapter.java
com.unwind.networkmonitor.Scan.java