View Javadoc
1   /*
2    * MIT License
3    * Copyright (c) 2006-2025 JMockit developers
4    * See LICENSE file for full license text.
5    */
6   package mockit.asm.constantPool;
7   
8   import static mockit.asm.jvmConstants.ConstantPoolTypes.INTEGER;
9   
10  import edu.umd.cs.findbugs.annotations.NonNull;
11  
12  import org.checkerframework.checker.index.qual.NonNegative;
13  
14  public final class IntItem extends IntValueItem {
15      public IntItem(@NonNegative int index) {
16          super(index);
17          type = INTEGER;
18      }
19  
20      IntItem(@NonNegative int index, @NonNull IntItem item) {
21          super(index, item);
22      }
23  }