Package org.brixcms.jcr.api

Examples of org.brixcms.jcr.api.JcrVersion$Wrapper


    public static JcrVersion[] wrap(Version delegate[], JcrSession session) {
        if (delegate == null) {
            return null;
        } else {
            JcrVersion res[] = new JcrVersion[delegate.length];
            for (int i = 0; i < delegate.length; ++i) {
                res[i] = wrap(delegate[i], session);
            }
            return res;
        }
View Full Code Here

TOP

Related Classes of org.brixcms.jcr.api.JcrVersion$Wrapper

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.