src/java.base/share/classes/java/lang/LiveStackFrame.java
changeset 58054 ee230ad8cfef
parent 53563 a4b7ea85d668
equal deleted inserted replaced
58053:1a296c9064dc 58054:ee230ad8cfef
   114      * Represents a local variable or an entry on the operand stack whose value is
   114      * Represents a local variable or an entry on the operand stack whose value is
   115      * of primitive type.
   115      * of primitive type.
   116      */
   116      */
   117     public abstract class PrimitiveSlot {
   117     public abstract class PrimitiveSlot {
   118         /**
   118         /**
       
   119          * Constructor.
       
   120          */
       
   121         PrimitiveSlot() {}
       
   122 
       
   123         /**
   119          * Returns the size, in bytes, of the slot.
   124          * Returns the size, in bytes, of the slot.
   120          */
   125          */
   121         public abstract int size();
   126         public abstract int size();
   122 
   127 
   123         /**
   128         /**