updated javadoc for imageMatches

This commit is contained in:
Adrian Cole 2012-06-05 11:35:43 -07:00
parent 37e2cc7c1b
commit 5f29c52c19
1 changed files with 6 additions and 0 deletions

View File

@ -162,6 +162,12 @@ public interface TemplateBuilder {
/** /**
* Configure this template to have an image description that matches the supplied condition * 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); TemplateBuilder imageMatches(Predicate<Image> condition);