public MockPropertyDefinitionTemplate()

in src/main/java/org/apache/sling/testing/mock/jcr/MockPropertyDefinitionTemplate.java [34:44]


    public MockPropertyDefinitionTemplate(String declaringNodeTypeName, NodeTypeManager ntMgr, PropertyDefinition propDef) {
        this(declaringNodeTypeName, ntMgr);
        // copy ctor
        this.type = propDef.getRequiredType();
        this.constraints = propDef.getValueConstraints();
        this.defaultValues = propDef.getDefaultValues();
        this.multiple = propDef.isMultiple();
        this.fullTextSearchable = propDef.isFullTextSearchable();
        this.queryOrderable = propDef.isQueryOrderable();
        this.queryOperators = propDef.getAvailableQueryOperators();
    }