protected CfmlTagItem getNameBasedCfmlTag(String tagName, ParseItemMatch match, int lineNum)
{
//
// There _so_ must be a better way of doing this, but what it is I'm not sure!
if(tagName.compareToIgnoreCase("else") == 0)
return new CfmlTagElse(lineNum, match.startPos, match.endPos, tagName);
else if(tagName.compareToIgnoreCase("if") == 0)
return new CfmlTagIf(lineNum, match.startPos, match.endPos, tagName);
else if(tagName.compareToIgnoreCase("case") == 0)
return new CfmlTagCase(lineNum, match.startPos, match.endPos, tagName);
else if(tagName.compareToIgnoreCase("defaultcase") == 0)