in slingshot/src/main/java/org/apache/sling/sample/slingshot/model/PropertiesSupport.java [35:44]
protected ValueMap getProperties() {
if ( this.properties == null ) {
if ( this.resource == null ) {
this.properties = ResourceUtil.getValueMap(null);
} else {
this.properties = resource.getValueMap();
}
}
return this.properties;
}