public void setValue()

in src/main/java/org/apache/sling/commons/testing/jcr/MockProperty.java [176:183]


    public void setValue(String[] inputValues) throws ValueFormatException, VersionException, LockException,
            ConstraintViolationException, RepositoryException {
        this.values = new MockValue[inputValues.length];
        int i = 0;
        for(String str : inputValues) {
            values[i++] = new MockValue(str);
        }
    }