// add set to ordered and unique locator paths
ListIterator locatorPathsIter = locatorPathsSet.listIterator(locatorPathsSet.size());
while (locatorPathsIter.hasPrevious())
{
String locatorPath = locatorPathsIter.previous().toString();
if (! orderedLocatorPaths.contains(locatorPath))
{
orderedLocatorPaths.add(0, locatorPath);
}
}