Back to project page App-Growth-Engine-Android-TabUI.
The source code is released under:
Apache License
If you think the Android project App-Growth-Engine-Android-TabUI 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.hookmobile.tabui; /* w w w . j a va2 s.c om*/ import java.io.Serializable; class RecommendedContact implements Serializable { private static final long serialVersionUID = 8929387534297890842L; private String name; private boolean selected; public RecommendedContact(String name) { this(name, false); } public RecommendedContact(String name, boolean selected) { this.name = name; this.selected = selected; } public String getName() { return name; } public void setName(String name) { this.name = name; } public boolean isSelected() { return selected; } public void setSelected(boolean selected) { this.selected = selected; } }