View Javadoc
1   package mockit.asm.constantPool;
2   
3   import static mockit.asm.jvmConstants.ConstantPoolTypes.INTEGER;
4   
5   import edu.umd.cs.findbugs.annotations.NonNull;
6   
7   import org.checkerframework.checker.index.qual.NonNegative;
8   
9   public final class IntItem extends IntValueItem {
10      public IntItem(@NonNegative int index) {
11          super(index);
12          type = INTEGER;
13      }
14  
15      IntItem(@NonNegative int index, @NonNull IntItem item) {
16          super(index, item);
17      }
18  }