Back to project page Wardrobe_app.
The source code is released under:
Apache License
If you think the Android project Wardrobe_app 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.android.busolo.apps.wardrobe.engine.model; /*from ww w . j av a 2 s .c o m*/ /** * Created by james on 30/06/14. */ public class Follow { private int profileID; private String profileName; private String profilePic; private int following; //1 -following ; 0 - not following public Follow(){} public Follow(int profileID, String profileName, String profilePic, int following){ this.profileID = profileID; this.profileName = profileName; this.profilePic = profilePic; this.following = following; } public int getProfileID() { return profileID; } public void setProfileID(int profileID) { this.profileID = profileID; } public String getProfileName() { return profileName; } public void setProfileName(String profileName) { this.profileName = profileName; } public String getProfilePic() { return profilePic; } public void setProfilePic(String profilePic) { this.profilePic = profilePic; } public int getFollowing() { return following; } public void setFollowing(int following) { this.following = following; } }