Back to project page Android.Wear.Message.
The source code is released under:
MIT License
If you think the Android project Android.Wear.Message 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.iamnbty.androidwear.model; /*from w w w . ja v a 2 s. co m*/ public class ConnectedDevice { public String nodeId; public String displayName; public ConnectedDevice(String nodeId, String displayName) { this.nodeId = nodeId; this.displayName = displayName; } }