Package org.apache.sling.validation.impl

Examples of org.apache.sling.validation.impl.ChildResourceImpl


                                                    ValidatorLookupService validatorLookupService) {
        List<ChildResource> children = new ArrayList<ChildResource>();
        Resource childrenResource = rootResource.getChild(Constants.CHILDREN);
        if (childrenResource != null) {
            for (Resource child : childrenResource.getChildren()) {
                ChildResource childResource = new ChildResourceImpl(modelResource, child, validatorLookupService);
                children.add(childResource);
                children.addAll(buildChildren(modelResource, child, validatorLookupService));
            }
        }
        return children;
View Full Code Here

TOP

Related Classes of org.apache.sling.validation.impl.ChildResourceImpl

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.