while (iter.hasNext()) {
Object cfItem = iter.next();
if (cfItem instanceof CfmlComment) {
CfmlComment comment = (CfmlComment) cfItem;
String commentText = ((CfmlComment) cfItem).getItemData();
// Now get the type from the comment text
Pattern p = Pattern.compile(cfmlVarRE);
Matcher m = p.matcher(commentText);