Package edu.brown.cs.methodstrack

Examples of edu.brown.cs.methodstrack.MethodToTrack


                }
                String strCalleeClassMethodName = arrNameDesc[0];
                String strCalleeDescriptor = "(" + arrNameDesc[1];

                //Get information about the call and about the patch
                MethodToTrack methodToTrack = MethodsToTrackSet.isMethodToBeTracked(strCalleeClassMethodName, strCalleeDescriptor);
                if (methodToTrack == null)
                {
                    throw new RampException("No information record for method " + strCalleeClassMethodName);
                }
View Full Code Here


        {   //This is a  call to a library method that will provide context information
            addToClassMap(this.m_mapLibraryCalls, m_strCurrentMethod, fullCalleeMethodName+calleeMethodDescriptor, lnx);
        }

       
        MethodToTrack methodTrack = MethodsToTrackSet.isMethodToBeTracked(fullCalleeMethodName, calleeMethodDescriptor);
        if (methodTrack == null)
        {
            return;
        }
       
View Full Code Here

TOP

Related Classes of edu.brown.cs.methodstrack.MethodToTrack

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.