Package org.apache.jackrabbit.oak.kernel

Examples of org.apache.jackrabbit.oak.kernel.PropertyStateImpl


        }
    }

    @Override
    public void setProperty(String name, CoreValue value) {
        PropertyState property = new PropertyStateImpl(name, value);
        properties.put(name, property);
    }
View Full Code Here


        properties.put(name, property);
    }

    @Override
    public void setProperty(String name, List<CoreValue> values) {
        PropertyState property = new PropertyStateImpl(name, values);
        properties.put(name, property);
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.oak.kernel.PropertyStateImpl

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.