summaryrefslogtreecommitdiff
path: root/src/data/Profile.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/data/Profile.java')
-rw-r--r--src/data/Profile.java16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/data/Profile.java b/src/data/Profile.java
index e4ba602..4e1f413 100644
--- a/src/data/Profile.java
+++ b/src/data/Profile.java
@@ -1,16 +1,16 @@
-
package data;
/**
- * This class contains the data that is stored of a user.
+ * This class contains all data that is stored of a user by twitter.
*/
public class Profile {
-
- private boolean m_exists;
-
- private String m_name;
-
+
+ // 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;
}