package com.moupress.app.friendshost.sns.facebook; import com.moupress.app.friendshost.Const; import com.moupress.app.friendshost.sns.UserFriend; public class FBHomeFeedEntryFrom extends UserFriend { // private String id; // private String name; //No Arg constructor public FBHomeFeedEntryFrom() { sns = Const.SNS_FACEBOOK; headurl = ""; } // public void setId(String id) { // this.id = id; // } // // public String getId() { // return id; // } // // public void setName(String name) { // this.name = name; // } // // public String getName() { // return name; // } //Getter methods should be declared. Setter methods are optional }