Home | History | Annotate | Download | only in finder

Lines Matching defs:finder

17 package com.google.inject.persist.finder;
22 * Utility that helps you introspect dynamic finder methods.
28 private final Finder finder;
32 this.finder = method.getAnnotation(Finder.class);
36 * Returns some metadata if the method is annotated {@code @Finder} or null.
38 * @param method a method you want to test as a dynamic finder
41 return method.isAnnotationPresent(Finder.class) ? new DynamicFinder(method) : null;
44 public Finder metadata() {
45 return finder;