Fixes null captured parameters
[jpf-core.git] / src / main / gov / nasa / jpf / vm / AbstractTypeAnnotationInfo.java
1 /*
2  * Copyright (C) 2014, United States Government, as represented by the
3  * Administrator of the National Aeronautics and Space Administration.
4  * All rights reserved.
5  *
6  * The Java Pathfinder core (jpf-core) platform is licensed under the
7  * Apache License, Version 2.0 (the "License"); you may not use this file except
8  * in compliance with the License. You may obtain a copy of the License at
9  * 
10  *        http://www.apache.org/licenses/LICENSE-2.0. 
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and 
16  * limitations under the License.
17  */
18 package gov.nasa.jpf.vm;
19
20 /**
21  * abstract AnnotationInfo base for Java 8 type annotations
22  */
23 public abstract class AbstractTypeAnnotationInfo extends AnnotationInfo {
24   
25   protected int targetType;   // see section 3.2 of JSR 308 - constants defined in .jvm.ClassFile
26   protected short[] typePath; // the type path for compound type annotations as per 3.4 of JSR 308
27   
28   protected AbstractTypeAnnotationInfo (AnnotationInfo base, int targetType, short[] typePath) {
29     super(base);
30     
31     this.targetType = targetType;
32     this.typePath = typePath;
33   }
34   
35   // <2do> add typePath query
36   
37   public int getTargetType(){
38     return targetType;
39   }
40   
41   protected void addArgs(StringBuilder sb){
42     // nothing here
43   }
44   
45   @Override
46   public String toString(){
47     StringBuilder sb = new StringBuilder();
48     sb.append(getClass().getName());
49     sb.append( '{');
50     
51     sb.append( "targetType:");
52     sb.append( Integer.toHexString(targetType));
53     
54     sb.append( ",name:");
55     sb.append( name);
56     
57     if (typePath != null){
58       sb.append( ",path:");
59       for (int i=0; i<typePath.length;i++){
60         int e = typePath[i];
61         sb.append('(');
62         sb.append( Integer.toString((e>>8) & 0xff));
63         sb.append( Integer.toString(e & 0xff));
64         sb.append(')');
65       }
66     }
67     
68     addArgs(sb); // overridden by subclasses
69     sb.append( '}');    
70     
71     return sb.toString();
72   }
73 }