summaryrefslogtreecommitdiff
path: root/src/Chapter5/support/Tweet.java
blob: be5316620023eff9da1cf2ae403d5ec40c1ebd79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
}