This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

View | Details | Raw Unified | Return to bug 65120
Collapse All | Expand All

(-)StartActionProvider.java (-10 / +10 lines)
Lines 102-108 Link Here
102
    
102
    
103
    public void postAction(Object action, Runnable actionPerformedNotifier) {
103
    public void postAction(Object action, Runnable actionPerformedNotifier) {
104
        if (startVerbose)
104
        if (startVerbose)
105
            System.out.println ("\nS StartActionProvider.doAction ()");
105
            System.out.println ("\nS StartActionProvider.postAction ()");
106
        JPDADebuggerImpl debugger = (JPDADebuggerImpl) lookupProvider.
106
        JPDADebuggerImpl debugger = (JPDADebuggerImpl) lookupProvider.
107
            lookupFirst (null, JPDADebugger.class);
107
            lookupFirst (null, JPDADebugger.class);
108
        if ( debugger != null && 
108
        if ( debugger != null && 
Lines 112-117 Link Here
112
        
112
        
113
        final AbstractDICookie cookie = (AbstractDICookie) lookupProvider.
113
        final AbstractDICookie cookie = (AbstractDICookie) lookupProvider.
114
            lookupFirst (null, AbstractDICookie.class);
114
            lookupFirst (null, AbstractDICookie.class);
115
        if (startVerbose)
116
            System.out.println ("\nS StartActionProvider." +
117
                "postAction () setStarting"
118
            );
119
        debuggerImpl.setStarting ();  // JS
120
        if (startVerbose)
121
            System.out.println ("\nS StartActionProvider." +
122
                "postAction () setStarting end"
123
            );
115
        RequestProcessor.getDefault().post(new Runnable() {
124
        RequestProcessor.getDefault().post(new Runnable() {
116
            public void run() {
125
            public void run() {
117
                debuggerImpl.setStartingThread(Thread.currentThread());
126
                debuggerImpl.setStartingThread(Thread.currentThread());
Lines 123-137 Link Here
123
                
132
                
124
            }
133
            }
125
        });
134
        });
126
        debuggerImpl.setStarting ();
127
        if (startVerbose)
128
            System.out.println ("\nS StartActionProvider." +
129
                "doAction () setStarting"
130
            );
131
        if (startVerbose)
132
            System.out.println ("\nS StartActionProvider." +
133
                "doAction () end"
134
            );
135
    }
135
    }
136
    
136
    
137
    private void doStartDebugger(AbstractDICookie cookie) {
137
    private void doStartDebugger(AbstractDICookie cookie) {

Return to bug 65120