DocumentOrderCompartaor
514515516517518519520521522523524525526527528
{ if(metadata.getDocumentOrder() != null) { if (getPath().endsWith(PATH_SEPARATOR)) { allNodes = new NodeSetImpl(getPath(), new NodeOrderComparator(metadata.getDocumentOrder(), getPath())); } else { allNodes = new NodeSetImpl(getPath(), new NodeOrderComparator(metadata.getDocumentOrder(), getPath() + PATH_SEPARATOR)); } } else { allNodes = new NodeSetImpl(getPath());
521522523524525526527528529530531532533534535
730731732733734735736737738739740741742743744