DocumentOrderCompartaor
561562563564565566567568569570571572573574575
{ if(metadata.getDocumentOrder() != null) { if (getPath().endsWith(PATH_SEPARATOR)) { allNodes = new NodeSetImpl(getPath(), new NodeOrderCompartaor(metadata.getDocumentOrder(), getPath())); } else { allNodes = new NodeSetImpl(getPath(), new NodeOrderCompartaor(metadata.getDocumentOrder(), getPath() + PATH_SEPARATOR)); } } else { allNodes = new NodeSetImpl(getPath());
562563564565566567568569570571572573574575576