From 4996a1613988c14bd2b7bbbee6adcb5c527e81d1 Mon Sep 17 00:00:00 2001 From: Roman Shevchenko Date: Wed, 28 May 2014 20:49:06 +0400 Subject: class literals in annotation attributes supported --- .../struct/attr/StructAnnotationAttribute.java | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/src/de/fernflower/struct/attr/StructAnnotationAttribute.java b/src/de/fernflower/struct/attr/StructAnnotationAttribute.java index 4d8f6bf..5458d0b 100644 --- a/src/de/fernflower/struct/attr/StructAnnotationAttribute.java +++ b/src/de/fernflower/struct/attr/StructAnnotationAttribute.java @@ -96,17 +96,34 @@ public class StructAnnotationAttribute extends StructGeneralAttribute { value = type.value; break; case CodeConstants.TYPE_BYTE: + value = byte.class.getName(); + break; case CodeConstants.TYPE_CHAR: + value = char.class.getName(); + break; case CodeConstants.TYPE_DOUBLE: + value = double.class.getName(); + break; case CodeConstants.TYPE_FLOAT: + value = float.class.getName(); + break; case CodeConstants.TYPE_INT: + value = int.class.getName(); + break; case CodeConstants.TYPE_LONG: + value = long.class.getName(); + break; case CodeConstants.TYPE_SHORT: + value = short.class.getName(); + break; case CodeConstants.TYPE_BOOLEAN: + value = boolean.class.getName(); + break; case CodeConstants.TYPE_VOID: - // FIXME: other classes if applicable, see attribute description + value = void.class.getName(); + break; default: - throw new RuntimeException("invalid class type!"); + throw new RuntimeException("invalid class type: " + type.type); } return new ConstExprent(VarType.VARTYPE_CLASS, value); case '[': // array -- cgit v1.2.3