Package org.modeshape.jcr.cache.document.DocumentTranslator

Examples of org.modeshape.jcr.cache.document.DocumentTranslator.ChildReferencesInfo


                if (blockDoc == null) {
                    throw new DocumentNotFoundException(nextKey);
                }
                // we only need the direct children of the block to avoid nesting
                ChildReferences refs = cache.translator().getChildReferencesFromBlock(blockDoc);
                ChildReferencesInfo nextNextKey = cache.translator().getChildReferencesInfo(blockDoc);
                next = new Segment(refs, nextNextKey != null ? nextNextKey.nextKey : null);
            }
            return next;
        }
View Full Code Here

TOP

Related Classes of org.modeshape.jcr.cache.document.DocumentTranslator.ChildReferencesInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.