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