summaryrefslogtreecommitdiff
path: root/src/Chapter5/support/Tweet.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/Chapter5/support/Tweet.java')
-rw-r--r--src/Chapter5/support/Tweet.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/Chapter5/support/Tweet.java b/src/Chapter5/support/Tweet.java
new file mode 100644
index 0000000..be53166
--- /dev/null
+++ b/src/Chapter5/support/Tweet.java
@@ -0,0 +1,21 @@
+/*
+ * To change this template, choose Tools | Templates
+ * and open the template in the editor.
+ */
+
+package Chapter5.support;
+
+/**
+ *
+ * @author shamanth
+ */
+public class Tweet {
+ public String text;
+ public long id;
+ public double lat;
+ public double lng;
+ public String pubdate;
+ public String user;
+ public int catID;
+ public String catColor;
+}