422423424425426427428429
NamedNativeQueries annotation = element .getAnnotation(NamedNativeQueries.class); for (int i = 0; i < annotation.value().length; i++) { entity.getNamedNativeQueries().add( new JpaNamedNativeQuery(annotation.value()[i])); } }
436437438439440441442443
NamedNativeQueries annotation = element .getAnnotation(NamedNativeQueries.class); for (int i = 0; i < annotation.value().length; i++) { entityMap.getNamedNativeQueries().add( new JpaNamedNativeQuery(annotation.value()[i])); } }
450451452453454455456
JpaEntity entity, AnnotatedElement element, AnnotationProcessorStack context) { NamedNativeQuery annotation = element.getAnnotation(NamedNativeQuery.class); entity.getNamedNativeQueries().add(new JpaNamedNativeQuery(annotation)); }
460461462463464465466
JpaEntityMap entityMap, AnnotatedElement element, AnnotationProcessorStack context) { NamedNativeQuery annotation = element.getAnnotation(NamedNativeQuery.class); entityMap.getNamedNativeQueries().add(new JpaNamedNativeQuery(annotation)); }
449450451452453454455
459460461462463464465
421422423424425426427428
435436437438439440441442