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.LONG;
9   
10  import edu.umd.cs.findbugs.annotations.NonNull;
11  
12  import org.checkerframework.checker.index.qual.NonNegative;
13  
14  public final class LongItem extends LongValueItem {
15      public LongItem(@NonNegative int index) {
16          super(index);
17          type = LONG;
18      }
19  
20      LongItem(@NonNegative int index, @NonNull LongItem item) {
21          super(index, item);
22      }
23  }