public ArrayList<DataUnit> getData(String filePath) {
ArrayList<String> theTweets;
ArrayList<DataUnit> tweets = new ArrayList<DataUnit>();
theTweets = FilesReader.getAllLines(filePath);
for (String stTweet : theTweets) {
tweets.add(new TweetUnit(stTweet));
}
return tweets;
}