package data; /** * This class contains all data that is stored of a user by twitter. */ public class Profile { // The displayed name of the user. private String m_displayName; // The real name of the user (when set) private String m_realName; // When the profile is created. private String m_creationDate; }