in slingshot/src/main/java/org/apache/sling/sample/slingshot/model/StreamEntry.java [42:52]
public String getTitle() {
String value = this.getProperties().get(PROPERTY_TITLE, String.class);
if ( value == null ) {
if ( resource != null ) {
value = resource.getName();
} else {
value = "No Title";
}
}
return value;
}