Examples of DeepReadModifiableValueMapDecorator


Examples of org.apache.sling.api.wrappers.DeepReadModifiableValueMapDecorator

        if ( type == ValueMap.class || type == Map.class ) {
            this.dbObject = this.provider.getUpdatedDBObject(this.resourcePath, this.dbObject);
            return (AdapterType) new DeepReadValueMapDecorator(this, new ReadableValueMap(this.dbObject));
        } else if ( type == ModifiableValueMap.class ) {
            this.dbObject = this.provider.getUpdatedDBObject(this.resourcePath, this.dbObject);
            return (AdapterType) new DeepReadModifiableValueMapDecorator(this, new ChangeableValueMap(this));
        }

        return super.adaptTo(type);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.