185186187188189190191192193194195
for( int i = 0; i < contextList.size(); i++) { Context c = (Context) contextList.get( i ); if ( c.containsKey( key )) return true; } return false; }
220221222223224225226227228229230