Package org.apache.kato.jvmti.javaruntime.model

Examples of org.apache.kato.jvmti.javaruntime.model.JLocalVariable


    }

    // Follow all the variable references
    for (int i2 = 0; i2 < varCount; i2++){
      log.finest("Slot "+slots[i2]+" at "+Long.toHexString(lvarReference[i2]));
      JLocalVariable jlv = new JLocalVariable();
      jlv.slot = slots[i2];
      long cpos = variablesIn.getStreamPosition();
      jlv.value = nreadReference(lvarReference[i2]);
      variablesIn.seek(cpos);
      jsf.addVariable(jlv);
View Full Code Here

TOP

Related Classes of org.apache.kato.jvmti.javaruntime.model.JLocalVariable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.