Back to project page FisgoDroid.
The source code is released under:
The smiley icons bundled with this application belong to Meneame.NET and are licensed under the Creative Commons by-sa 3.0 license. For more information, please visit http://creativecommons.org/licens...
If you think the Android project FisgoDroid 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 net.meneame.fisgodroid; /*w w w. j a v a2 s . c o m*/ public class UserProfile { private String mUsername; private String mName; private String mAvatarUrl; private String mBio; private FriendshipStatus mFriendship = FriendshipStatus.UNKNOWN; public UserProfile() { } public UserProfile setUsername(String username) { mUsername = username; return this; } public UserProfile setName(String name) { mName = name; return this; } public UserProfile setAvatarUrl(String url) { mAvatarUrl = url; return this; } public UserProfile setBio(String bio) { mBio = bio; return this; } public UserProfile setFriendship(FriendshipStatus status) { mFriendship = status; return this; } public String getUsername() { return mUsername; } public String getName() { return mName; } public String getAvatarUrl() { return mAvatarUrl; } public String getBio() { return mBio; } public FriendshipStatus getFriendship() { return mFriendship; } }