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 --- src/org/uic/barcode/asn1/uper/AnnotationStore.java | 31 ---------------------- 1 file changed, 31 deletions(-) delete mode 100644 src/org/uic/barcode/asn1/uper/AnnotationStore.java (limited to 'src/org/uic/barcode/asn1/uper/AnnotationStore.java') diff --git a/src/org/uic/barcode/asn1/uper/AnnotationStore.java b/src/org/uic/barcode/asn1/uper/AnnotationStore.java deleted file mode 100644 index 6a23a75..0000000 --- a/src/org/uic/barcode/asn1/uper/AnnotationStore.java +++ /dev/null @@ -1,31 +0,0 @@ -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