* representation i.e. each word is given a POS and a relevancy .
*/
public void formatt() {
for (String sentence : Review_Sentences) {
if (!sentence.trim().equals("")) {
Formatted_Text ft = new Formatted_Text();
ft.Format_Text(sentence);
formatedSentences.add(ft);
}
}
}