diff options
author | CGantert345 <57003061+CGantert345@users.noreply.github.com> | 2021-02-25 11:02:26 +0100 |
---|---|---|
committer | CGantert345 <57003061+CGantert345@users.noreply.github.com> | 2021-02-25 11:02:26 +0100 |
commit | 425bd35c736b7e1c0dbe5b3f9162e195b3be6018 (patch) | |
tree | bc4668aa125fb0a15518d464a1738c6b05e56d07 /src/net/gcdc/asn1/uper/AnnotationStore.java | |
parent | issuerOnLine changed from int to Integer as it is optional (diff) | |
download | UIC-barcode-425bd35c736b7e1c0dbe5b3f9162e195b3be6018.tar UIC-barcode-425bd35c736b7e1c0dbe5b3f9162e195b3be6018.tar.gz UIC-barcode-425bd35c736b7e1c0dbe5b3f9162e195b3be6018.tar.bz2 UIC-barcode-425bd35c736b7e1c0dbe5b3f9162e195b3be6018.tar.lz UIC-barcode-425bd35c736b7e1c0dbe5b3f9162e195b3be6018.tar.xz UIC-barcode-425bd35c736b7e1c0dbe5b3f9162e195b3be6018.tar.zst UIC-barcode-425bd35c736b7e1c0dbe5b3f9162e195b3be6018.zip |
Diffstat (limited to '')
-rw-r--r-- | src/net/gcdc/asn1/uper/AnnotationStore.java | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/src/net/gcdc/asn1/uper/AnnotationStore.java b/src/net/gcdc/asn1/uper/AnnotationStore.java deleted file mode 100644 index 325ade8..0000000 --- a/src/net/gcdc/asn1/uper/AnnotationStore.java +++ /dev/null @@ -1,31 +0,0 @@ -package net.gcdc.asn1.uper; - -import java.lang.annotation.Annotation; -import java.util.Collection; -import java.util.HashMap; -import java.util.Map; - -class AnnotationStore { - - private Map<Class<? extends Annotation>, 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 extends Annotation> T getAnnotation(Class<T> classOfT) { - @SuppressWarnings("unchecked") - // Annotations were added with value T for key classOfT. - T result = (T) annotations.get(classOfT); - return result; - } - - public Collection<Annotation> getAnnotations() { - return annotations.values(); - } -}
\ No newline at end of file |