From e023e674020f1a435f7b8c8b9276704f576ea6e5 Mon Sep 17 00:00:00 2001 From: CGantert345 <57003061+CGantert345@users.noreply.github.com> Date: Mon, 29 Mar 2021 14:08:45 +0200 Subject: structure change 1 --- .../org/uic/barcode/asn1/uper/AnnotationStore.java | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/main/java/org/uic/barcode/asn1/uper/AnnotationStore.java (limited to 'src/main/java/org/uic/barcode/asn1/uper/AnnotationStore.java') diff --git a/src/main/java/org/uic/barcode/asn1/uper/AnnotationStore.java b/src/main/java/org/uic/barcode/asn1/uper/AnnotationStore.java new file mode 100644 index 0000000..6a23a75 --- /dev/null +++ b/src/main/java/org/uic/barcode/asn1/uper/AnnotationStore.java @@ -0,0 +1,31 @@ +package org.uic.barcode.asn1.uper; + +import java.lang.annotation.Annotation; +import java.util.Collection; +import java.util.HashMap; +import java.util.Map; + +class AnnotationStore { + + private Map, Annotation> annotations = new HashMap<>(); + + public AnnotationStore(Annotation[] classAnnot, Annotation[] fieldAnnot) { + for (Annotation a : classAnnot) { + annotations.put(a.annotationType(), a); + } + for (Annotation a : fieldAnnot) { + annotations.put(a.annotationType(), a); + } + } + + public T getAnnotation(Class classOfT) { + @SuppressWarnings("unchecked") + // Annotations were added with value T for key classOfT. + T result = (T) annotations.get(classOfT); + return result; + } + + public Collection getAnnotations() { + return annotations.values(); + } +} \ No newline at end of file -- cgit v1.2.3