{
return false;
}
SchemaBrowserNavigationLocation location = ( SchemaBrowserNavigationLocation ) currentLocation;
AbstractSchemaDescription other = location.getSchemElement();
AbstractSchemaDescription element = getSchemElement();
if ( other == null && element == null )
{
return true;
}
else if ( other == null || element == null )
{
return false;
}
else
{
return element.equals( other );
}
}