Package org.tod.meta

Examples of org.tod.meta.ThreadInfo


        refsToThreads.put(info.getThreadReference(), info);
    }

    @Override
    public ThreadInfo getByReference(ThreadReference reference) {
        ThreadInfo info = refsToThreads.get(reference);
        if (info == null) {
            IThreadInfo todReference = this.getTODSession().getTODHandler().lookupThread(reference);
            info = new ThreadInfo(reference, todReference);
            threadsToRefs.put(info, reference);
            refsToThreads.put(reference, info);
        }
       
        return info;
View Full Code Here


            BreakpointRequest bpr = (BreakpointRequest) e.request();
            BreakpointInfo info = new BreakpointInfo();
            info.setClassInfo(this.session.getClassInformationProvider().getClassInfo(e.location().declaringType()));
            info.setMethodInfo(this.session.getClassInformationProvider().getMethodInfo(e.location().method()));
            info.setLineNumber(e.location().lineNumber());
            ThreadInfo threadInfo = this.session.getThreadTracker().getByReference(e.thread());
            this.session.getThreadTracker().setActiveThread(threadInfo);
            info.setThread(threadInfo);
            listener.breakpointReached(info);
            // TODO
            // Is this a "step into" event, or a real breakpoint?
View Full Code Here

TOP

Related Classes of org.tod.meta.ThreadInfo

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.