Esempio n. 1
0
 /**
  * Initialize from another object. Note that both objects use the same references (shallow copy).
  * Use copy() for a physical copy.
  *
  * @param c
  */
 public LocalVariable(LocalVariable c) {
   this(
       c.getStartPC(),
       c.getLength(),
       c.getNameIndex(),
       c.getSignatureIndex(),
       c.getIndex(),
       c.getConstantPool());
 }