example.getDataBody();
parsedOut = theParser.parse(textWords, opts);
for (int i = 0; i < parsedOut.getTaggedWords().size(); i++) {
temp = new TaggedStem();
temp.setStemTag(parsedOut.getTaggedWords().get(i).getWordTag());
temp.setTheStem(arabicStemmer.stem(textWords.get(i).word()));
if (!taggedStems.contains(temp)) {
taggedStems.add(temp);
}
}