updated javadoc for imageMatches

This commit is contained in:
Adrian Cole 2012-06-05 11:35:43 -07:00
parent 54f854f33f
commit e5a98cecfe
1 changed files with 6 additions and 0 deletions

View File

@ -143,6 +143,12 @@ public interface TemplateBuilder {
/**
* Configure this template to have an image description that matches the supplied condition
*
* ex.
*
* <pre>
* builder.imageMatches(ImagePredicates.userMetadataContains("author", "sue"));
* </pre>
*/
TemplateBuilder imageMatches(Predicate<Image> condition);