Examples of EClassLoadEvent


Examples of net.zero.smarttrace.core.data.events.EClassLoadEvent

    return ret;
    }
 
  public EClassLoadEvent createClassLoadEvent(ClassPrepareEvent event)
    {
    EClassLoadEvent ret=new EClassLoadEvent();
    loadEventTimeData(ret);
    ret.setClase(createQueryReferenceType(event.referenceType()));
    loadStackTraceLocation(ret, event.thread());
    if(ret.getStackFrameLocation()!=null)
      //actualStackFrameLocation4Thread.put(ret.getStackFrameLocation().getStackFrame().getThread().getName(), ret.getStackFrameLocation());
      pushST(ret.getStackFrameLocation());
   
    JPAManager.getJPAManager().getEntityManager().persist(ret);
   
    return ret;
    }
View Full Code Here

Examples of net.zero.smarttrace.core.data.events.EClassLoadEvent

                    er.addClassFilter(rt);
                    er.setSuspendPolicy(EventRequest.SUSPEND_EVENT_THREAD);
                    er.setEnabled(true);
                    }
                 
                  EClassLoadEvent eEvent;
            //generar evento
                  generatedEvents.add(eEvent=dataManager.createClassLoadEvent(cpe));
                 
                  //resumir hilo
                  resumir.add(((ClassPrepareEvent) event).thread());
View Full Code Here

Examples of net.zero.smarttrace.data.events.EClassLoadEvent

    return ret;
    }
 
  public EClassLoadEvent createClassLoadEvent(ClassPrepareEvent event)
    {
    EClassLoadEvent ret=new EClassLoadEvent();
    loadEventTimeData(ret);
    ret.setClase(createReferenceType(event.referenceType()));
    loadStackTraceAndLocation(ret, event.thread());
   
    JPAManager.getJPAManager().getEntityManager().persist(ret);
   
    return ret;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.