Package javax.tools.diagnostics.runtime.java

Examples of javax.tools.diagnostics.runtime.java.JavaVariable


                      if (nextVar instanceof CorruptData) {
                        logr.log(JDILogger.LEVEL_VERYVERBOSE, "Corrupt local variable data");
                        continue;
                      }

                      JavaVariable var = (JavaVariable) nextVar;
                     
                      addLongToVector(vctr, var.getStart());
                      addStringToVector(vctr, var.getName());
                      addStringToVector(vctr, var.getSignature());
                      addIntToVector(vctr, var.getLength());
                      addIntToVector(vctr, var.getSlot());
                      logr.log(JDILogger.LEVEL_VERYVERBOSE, "  start:"+var.getStart()+
                          " name:`"+var.getName()+ "'"+
                          " signature:`"+var.getSignature()+"'"+
                          " length: "+var.getLength()+
                          " slot: "+var.getSlot()); //$NON-NLS-1$ //$NON-NLS-2$

                    }
                    ReplyPacket rpckt = new ReplyPacket(cpckt.getSequence(), FLAG_REPLY_PACKET, ERROR_NONE);
                    rpckt.setData(vectorToByte(vctr));
View Full Code Here

TOP

Related Classes of javax.tools.diagnostics.runtime.java.JavaVariable

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.