public synchronized ClassRealm newRealm( String id, ClassLoader classLoader )
throws DuplicateRealmException
{
if ( realms.containsKey( id ) )
{
throw new DuplicateRealmException( this, id );
}
ClassRealm realm;
realm = new ClassRealm( this, id, classLoader );