final String token = tokenizer.nextToken();
final PropertyValue parsedToken = this.standardParse(fobj, token,
PdVoiceFamily.VALID_TOKEN_KEYWORDS);
if (parsedToken.canEvalKeyword()
|| parsedToken instanceof DtName) {
collection.addItem(parsedToken);
} else {
throw this.unexpectedValue(token, fobj);
}
}
return collection;