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 61693
Collapse All | Expand All

(-)src/org/netbeans/modules/debugger/jpda/ui/breakpoints/ClassBreakpointPanel.java (-1 / +13 lines)
Lines 25-31 Link Here
25
/**
25
/**
26
 * @author  Jan Jancura
26
 * @author  Jan Jancura
27
 */
27
 */
28
public class ClassBreakpointPanel extends JPanel implements Controller {
28
// <RAVE>
29
// Implement HelpCtx.Provider interface to provide help ids for help system
30
// public class ClassBreakpointPanel extends JPanel implements Controller {
31
// ====
32
public class ClassBreakpointPanel extends JPanel implements Controller, org.openide.util.HelpCtx.Provider {
33
// </RAVE>
29
    
34
    
30
    private ActionsPanel                actionsPanel; 
35
    private ActionsPanel                actionsPanel; 
31
    private ClassLoadUnloadBreakpoint   breakpoint;
36
    private ClassLoadUnloadBreakpoint   breakpoint;
Lines 94-99 Link Here
94
        actionsPanel = new ActionsPanel (b);
99
        actionsPanel = new ActionsPanel (b);
95
        pActions.add (actionsPanel, "Center");
100
        pActions.add (actionsPanel, "Center");
96
    }
101
    }
102
103
    // <RAVE>
104
    // Implement getHelpCtx() with the correct helpID
105
    public org.openide.util.HelpCtx getHelpCtx() {
106
       return new org.openide.util.HelpCtx("NetbeansDebuggerBreakpointClassJPDA"); // NOI18N
107
    }
108
    // </RAVE>
97
    
109
    
98
    /** This method is called from within the constructor to
110
    /** This method is called from within the constructor to
99
     * initialize the form.
111
     * initialize the form.
(-)src/org/netbeans/modules/debugger/jpda/ui/breakpoints/ExceptionBreakpointPanel.java (-1 / +13 lines)
Lines 29-35 Link Here
29
/**
29
/**
30
 * @author  Jan Jancura
30
 * @author  Jan Jancura
31
 */
31
 */
32
public class ExceptionBreakpointPanel extends JPanel implements Controller {
32
// <RAVE>
33
// Implement HelpCtx.Provider interface to provide help ids for help system
34
// public class ExceptionBreakpointPanel extends JPanel implements Controller {
35
// ====
36
public class ExceptionBreakpointPanel extends JPanel implements Controller, org.openide.util.HelpCtx.Provider {
37
// </RAVE>
33
    
38
    
34
    private ActionsPanel                actionsPanel; 
39
    private ActionsPanel                actionsPanel; 
35
    private ExceptionBreakpoint         breakpoint;
40
    private ExceptionBreakpoint         breakpoint;
Lines 107-112 Link Here
107
        actionsPanel = new ActionsPanel (b);
112
        actionsPanel = new ActionsPanel (b);
108
        pActions.add (actionsPanel, "Center");
113
        pActions.add (actionsPanel, "Center");
109
    }
114
    }
115
    
116
    // <RAVE>
117
    // Implement getHelpCtx() with the correct helpID
118
    public org.openide.util.HelpCtx getHelpCtx() {
119
        return new org.openide.util.HelpCtx("NetbeansDebuggerBreakpointExceptionJPDA"); // NOI18N
120
    }
121
    // </RAVE>
110
    
122
    
111
    /** This method is called from within the constructor to
123
    /** This method is called from within the constructor to
112
     * initialize the form.
124
     * initialize the form.
(-)src/org/netbeans/modules/debugger/jpda/ui/breakpoints/FieldBreakpointPanel.java (-1 / +13 lines)
Lines 25-31 Link Here
25
/**
25
/**
26
 * @author  Jan Jancura
26
 * @author  Jan Jancura
27
 */
27
 */
28
public class FieldBreakpointPanel extends JPanel implements Controller {
28
// <RAVE>
29
// Implement HelpCtx.Provider interface to provide help ids for help system
30
// public class FieldBreakpointPanel extends JPanel implements Controller {
31
// ====
32
public class FieldBreakpointPanel extends JPanel implements Controller, org.openide.util.HelpCtx.Provider {
33
// </RAVE>
29
    
34
    
30
    private ActionsPanel                actionsPanel; 
35
    private ActionsPanel                actionsPanel; 
31
    private FieldBreakpoint            breakpoint;
36
    private FieldBreakpoint            breakpoint;
Lines 82-87 Link Here
82
        actionsPanel = new ActionsPanel (b);
87
        actionsPanel = new ActionsPanel (b);
83
        pActions.add (actionsPanel, "Center");
88
        pActions.add (actionsPanel, "Center");
84
    }
89
    }
90
    
91
    // <RAVE>
92
    // Implement getHelpCtx() with the correct helpID
93
    public org.openide.util.HelpCtx getHelpCtx() {
94
        return new org.openide.util.HelpCtx("NetbeansDebuggerBreakpointFieldJPDA"); // NOI18N
95
    }
96
    // </RAVE>
85
    
97
    
86
    /** This method is called from within the constructor to
98
    /** This method is called from within the constructor to
87
     * initialize the form.
99
     * initialize the form.
(-)src/org/netbeans/modules/debugger/jpda/ui/breakpoints/LineBreakpointPanel.java (-1 / +14 lines)
Lines 36-42 Link Here
36
 *
36
 *
37
 * @author  Maros Sandor
37
 * @author  Maros Sandor
38
 */
38
 */
39
public class LineBreakpointPanel extends JPanel implements Controller {
39
// <RAVE>
40
// Implement HelpCtx.Provider interface to provide help ids for help system
41
// public class LineBreakpointPanel extends JPanel implements Controller {
42
//
43
public class LineBreakpointPanel extends JPanel implements Controller, org.openide.util.HelpCtx.Provider {
44
// </RAVE>
40
    
45
    
41
    private ActionsPanel                actionsPanel; 
46
    private ActionsPanel                actionsPanel; 
42
    private LineBreakpoint              breakpoint;
47
    private LineBreakpoint              breakpoint;
Lines 101-106 Link Here
101
        }
106
        }
102
        tfCondition.getDocument().putProperty(javax.swing.text.Document.StreamDescriptionProperty, dobj);
107
        tfCondition.getDocument().putProperty(javax.swing.text.Document.StreamDescriptionProperty, dobj);
103
    }
108
    }
109
    
110
    // <RAVE>
111
    // Implement getHelpCtx() with the correct helpID
112
    //
113
    public org.openide.util.HelpCtx getHelpCtx() {
114
        return new org.openide.util.HelpCtx("NetbeansDebuggerBreakpointLineJPDA"); // NOI18N
115
    }
116
    // </RAVE>
104
    
117
    
105
    /** This method is called from within the constructor to
118
    /** This method is called from within the constructor to
106
     * initialize the form.
119
     * initialize the form.
(-)src/org/netbeans/modules/debugger/jpda/ui/breakpoints/MethodBreakpointPanel.java (-1 / +13 lines)
Lines 25-31 Link Here
25
/**
25
/**
26
 * @author  Jan Jancura
26
 * @author  Jan Jancura
27
 */
27
 */
28
public class MethodBreakpointPanel extends JPanel implements Controller {
28
// <RAVE>
29
// Implement HelpCtx.Provider interface to provide help ids for help system
30
// public class MethodBreakpointPanel extends JPanel implements Controller {
31
// ====
32
public class MethodBreakpointPanel extends JPanel implements Controller, org.openide.util.HelpCtx.Provider {
33
// </RAVE>
29
    
34
    
30
    private ActionsPanel                actionsPanel; 
35
    private ActionsPanel                actionsPanel; 
31
    private MethodBreakpoint            breakpoint;
36
    private MethodBreakpoint            breakpoint;
Lines 81-86 Link Here
81
        actionsPanel = new ActionsPanel (b);
86
        actionsPanel = new ActionsPanel (b);
82
        pActions.add (actionsPanel, "Center");
87
        pActions.add (actionsPanel, "Center");
83
    }
88
    }
89
    
90
    // <RAVE>
91
    // Implement getHelpCtx() with the correct helpID
92
    public org.openide.util.HelpCtx getHelpCtx() {
93
        return new org.openide.util.HelpCtx("NetbeansDebuggerBreakpointMethodJPDA"); // NOI18N
94
    }
95
    // </RAVE>
84
    
96
    
85
    /** This method is called from within the constructor to
97
    /** This method is called from within the constructor to
86
     * initialize the form.
98
     * initialize the form.
(-)src/org/netbeans/modules/debugger/jpda/ui/breakpoints/ThreadBreakpointPanel.java (-1 / +13 lines)
Lines 24-30 Link Here
24
/**
24
/**
25
 * @author  Jan Jancura
25
 * @author  Jan Jancura
26
 */
26
 */
27
public class ThreadBreakpointPanel extends JPanel implements Controller {
27
// <RAVE> CR 6207738 - fix debugger help IDs
28
// Implement HelpCtx.Provider interface to provide help ids for help system
29
// public class ThreadBreakpointPanel extends JPanel implements Controller {
30
// ====
31
public class ThreadBreakpointPanel extends JPanel implements Controller, org.openide.util.HelpCtx.Provider {
32
// </RAVE>
28
    
33
    
29
    private ActionsPanel                actionsPanel; 
34
    private ActionsPanel                actionsPanel; 
30
    private ThreadBreakpoint            breakpoint;
35
    private ThreadBreakpoint            breakpoint;
Lines 70-75 Link Here
70
        actionsPanel = new ActionsPanel (b);
75
        actionsPanel = new ActionsPanel (b);
71
        pActions.add (actionsPanel, "Center");
76
        pActions.add (actionsPanel, "Center");
72
    }
77
    }
78
    
79
    // <RAVE>
80
    // Implement getHelpCtx() with the correct helpID    
81
    public org.openide.util.HelpCtx getHelpCtx() {
82
        return new org.openide.util.HelpCtx("NetbeansDebuggerBreakpointThreadJPDA"); // NOI18N
83
    }
84
    // </RAVE>
73
    
85
    
74
    /** This method is called from within the constructor to
86
    /** This method is called from within the constructor to
75
     * initialize the form.
87
     * initialize the form.
(-)src/org/netbeans/modules/debugger/jpda/ui/views/ClassesView.java (-1 / +13 lines)
Lines 24-30 Link Here
24
import org.openide.windows.TopComponent;
24
import org.openide.windows.TopComponent;
25
25
26
26
27
public class ClassesView extends TopComponent {
27
// <RAVE>
28
// Implement HelpCtx.Provider interface to provide help ids for help system
29
// public class ClassesView extends TopComponent {
30
// ====
31
public class ClassesView extends TopComponent implements org.openide.util.HelpCtx.Provider {
32
// </RAVE>
28
    
33
    
29
    private transient JComponent tree;
34
    private transient JComponent tree;
30
    private transient ViewModelListener viewModelListener;
35
    private transient ViewModelListener viewModelListener;
Lines 61-66 Link Here
61
        viewModelListener.destroy ();
66
        viewModelListener.destroy ();
62
        viewModelListener = null;
67
        viewModelListener = null;
63
    }
68
    }
69
    
70
    // <RAVE>
71
    // Implement getHelpCtx() with the correct helpID
72
    public org.openide.util.HelpCtx getHelpCtx() {
73
        return new org.openide.util.HelpCtx("NetbeansDebuggerClassNode"); // NOI18N
74
    }
75
    // </RAVE>
64
    
76
    
65
    public int getPersistenceType () {
77
    public int getPersistenceType () {
66
        return PERSISTENCE_ALWAYS;
78
        return PERSISTENCE_ALWAYS;
(-)src/org/netbeans/modules/debugger/jpda/ui/views/SourcesView.java (-1 / +13 lines)
Lines 21-27 Link Here
21
import org.openide.util.Utilities;
21
import org.openide.util.Utilities;
22
import org.openide.windows.TopComponent;
22
import org.openide.windows.TopComponent;
23
23
24
public class SourcesView extends TopComponent {
24
// <RAVE>
25
// Implement HelpCtx.Provider interface to provide help ids for help system
26
// public class SourcesView extends TopComponent {
27
// ====
28
public class SourcesView extends TopComponent implements org.openide.util.HelpCtx.Provider {
29
// </RAVE>    
25
    
30
    
26
    private transient JComponent tree;
31
    private transient JComponent tree;
27
    private transient ViewModelListener viewModelListener;
32
    private transient ViewModelListener viewModelListener;
Lines 58-63 Link Here
58
        viewModelListener.destroy ();
63
        viewModelListener.destroy ();
59
        viewModelListener = null;
64
        viewModelListener = null;
60
    }
65
    }
66
    
67
    // <RAVE>
68
    // Implement getHelpCtx() with the correct helpID
69
    public org.openide.util.HelpCtx getHelpCtx() {
70
        return new org.openide.util.HelpCtx("NetbeansDebuggerSourcesNode"); // NOI18N
71
    }
72
    // </RAVE>
61
    
73
    
62
    public int getPersistenceType () {
74
    public int getPersistenceType () {
63
        return PERSISTENCE_ALWAYS;
75
        return PERSISTENCE_ALWAYS;

Return to bug 61693