searchScopeString = nameInSourceArray[1];
}
// if there is no search scope specified
// try the default in the connector properties
if(searchScopeString.equals("")) { //$NON-NLS-1$
SearchDefaultScope searchDefaultScope = this.executionFactory.getSearchDefaultScope();
if (searchDefaultScope != null) {
searchScopeString = searchDefaultScope.name();
}
// protect against getting null back from the property
if(searchScopeString == null) {
searchScopeString = ""; //$NON-NLS-1$
}