summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/uic/barcode/asn1/uper/ChoiceCoder.java
diff options
context:
space:
mode:
authorCGantert345 <57003061+CGantert345@users.noreply.github.com>2022-02-10 14:00:06 +0100
committerGitHub <noreply@github.com>2022-02-10 14:00:06 +0100
commit7fe844da786691bf839f169bcab8e71b5021329e (patch)
treedad727a39dc76d330fe28480e24e8a846c36b760 /src/main/java/org/uic/barcode/asn1/uper/ChoiceCoder.java
parentMerge pull request #41 from UnionInternationalCheminsdeFer/1.2.13 (diff)
parentversion number update (diff)
downloadUIC-barcode-7fe844da786691bf839f169bcab8e71b5021329e.tar
UIC-barcode-7fe844da786691bf839f169bcab8e71b5021329e.tar.gz
UIC-barcode-7fe844da786691bf839f169bcab8e71b5021329e.tar.bz2
UIC-barcode-7fe844da786691bf839f169bcab8e71b5021329e.tar.lz
UIC-barcode-7fe844da786691bf839f169bcab8e71b5021329e.tar.xz
UIC-barcode-7fe844da786691bf839f169bcab8e71b5021329e.tar.zst
UIC-barcode-7fe844da786691bf839f169bcab8e71b5021329e.zip
Diffstat (limited to 'src/main/java/org/uic/barcode/asn1/uper/ChoiceCoder.java')
-rw-r--r--src/main/java/org/uic/barcode/asn1/uper/ChoiceCoder.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/org/uic/barcode/asn1/uper/ChoiceCoder.java b/src/main/java/org/uic/barcode/asn1/uper/ChoiceCoder.java
index d17a813..0bbce73 100644
--- a/src/main/java/org/uic/barcode/asn1/uper/ChoiceCoder.java
+++ b/src/main/java/org/uic/barcode/asn1/uper/ChoiceCoder.java
@@ -95,7 +95,7 @@ class ChoiceCoder implements Decoder, Encoder {
@Override public <T> T decode(BitBuffer bitbuffer,
Class<T> classOfT, Field field1,
- Annotation[] extraAnnotations) {
+ Annotation[] extraAnnotations, AsnExtractor extractor) {
AnnotationStore annotations = new AnnotationStore(classOfT.getAnnotations(),extraAnnotations);
UperEncoder.logger.debug(String.format("CHOICE: %s", classOfT.getName()));
T result = UperEncoder.instantiate(classOfT);
@@ -120,7 +120,7 @@ class ChoiceCoder implements Decoder, Encoder {
Class<?> classOfElement = field != null ? field.getType() : null;
if (field != null) {
try {
- Object decodedValue = UperEncoder.decodeAsOpenType(bitbuffer, classOfElement,field, field.getAnnotations());
+ Object decodedValue = UperEncoder.decodeAsOpenType(bitbuffer, classOfElement,field, field.getAnnotations(),extractor);
if (field != null) {
field.set(result, decodedValue);
}
@@ -144,7 +144,7 @@ class ChoiceCoder implements Decoder, Encoder {
UperEncoder.newRange(0, sorter.ordinaryFields.size() - 1, false));
Field f = sorter.ordinaryFields.get(index);
UperEncoder.logger.debug(String.format("CHOICE: selected %s", f.getName()));
- Object fieldValue = UperEncoder.decodeAny(bitbuffer, f.getType(),f, f.getAnnotations());
+ Object fieldValue = UperEncoder.decodeAny(bitbuffer, f.getType(),f, f.getAnnotations(),extractor);
try {
f.set(result, fieldValue);
} catch (IllegalArgumentException | IllegalAccessException e) {