* src/vm/annotation.c
authortwisti <none@none>
Sat, 16 Dec 2006 13:04:22 +0000 (13:04 +0000)
committertwisti <none@none>
Sat, 16 Dec 2006 13:04:22 +0000 (13:04 +0000)
(annotation_load_attribute_runtimevisibleannotations): Extended
comment, removed #ifdef ENABLE_JAVASE.

src/vm/annotation.c

index eb2b4eab2343afbb3bb912b0c7e2dd08d1edc1e2..7a335b2ee92a129dcf5528113f4fb857f356fb22 100644 (file)
             element_value element;
        } element_value_pairs[num_element_value_pairs];
    }
-                          
+
+   element_value {
+       u1 tag;
+       union {
+           u2 const_value_index;
+           {
+               u2 type_name_index;
+               u2 const_name_index;
+           } enum_const_value;
+           u2 class_info_index;
+           annotation annotation_value;
+           {
+               u2 num_values;
+               element_value values[num_values];
+           } array_value;
+       } value;
+   }
+
 *******************************************************************************/
 
-#if defined(ENABLE_JAVASE)
 bool annotation_load_attribute_runtimevisibleannotations(classbuffer *cb)
 {
        classinfo       *c;
@@ -148,7 +164,6 @@ bool annotation_load_attribute_runtimevisibleannotations(classbuffer *cb)
 
        return true;
 }
-#endif /* defined(ENABLE_JAVASE) */
 
 
 /*