List sources = sqlReservedWords.getKeywordSourceList( word );
boolean hasError = false;
emsg.append( " Violation Source(s): " );
for ( Iterator it = sources.iterator(); it.hasNext(); )
{
KeywordSource source = (KeywordSource) it.next();
emsg.append( source.getName() ).append( " (" ).append( source.getSeverity() ).append( ")" );
emsg.append( EOL );
if ( source.getSeverity().equalsIgnoreCase( "ERROR" ) )
{
hasError = true;
}
if ( it.hasNext() )