diff options
author | CGantert345 <57003061+CGantert345@users.noreply.github.com> | 2020-01-03 10:37:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-03 10:37:01 +0100 |
commit | 46039355e87825a9dce12ebaad0305d20eea3f43 (patch) | |
tree | 6b17c400a9b98d2a6ec367deeea9597ac2c78e5b /src/net/gcdc/asn1/uper/AnnotationStore.java | |
parent | logging (diff) | |
download | UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.tar UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.tar.gz UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.tar.bz2 UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.tar.lz UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.tar.xz UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.tar.zst UIC-barcode-46039355e87825a9dce12ebaad0305d20eea3f43.zip |
Diffstat (limited to 'src/net/gcdc/asn1/uper/AnnotationStore.java')
-rw-r--r-- | src/net/gcdc/asn1/uper/AnnotationStore.java | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/net/gcdc/asn1/uper/AnnotationStore.java b/src/net/gcdc/asn1/uper/AnnotationStore.java new file mode 100644 index 0000000..325ade8 --- /dev/null +++ b/src/net/gcdc/asn1/uper/AnnotationStore.java @@ -0,0 +1,31 @@ +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 |