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

(-)api/apichanges.xml (+19 lines)
Line 279 Link Here
279
    <change>
280
        <api name="JPDADebuggerAPI"/>
281
        <summary>LineBreakpoint supplied with the information about the source path where it is set.</summary>
282
        <version major="1" minor="3"/>
283
        <date day="15" month="2" year="2005"/>
284
        <author login="lkotouc"/>
285
        <compatibility addition="yes" source="compatible" binary="compatible"/>
286
        <description>
287
            <p>
288
                A line breakpoint does not contain the information
289
                about the source path where it is set. There is no
290
                way how to differ between breakpoints in the case
291
                when
292
                - several JSPs have the same name AND
293
                - these JSPs are statically included into one JSP page.
294
            </p>
295
        </description>
296
        <class package="org.netbeans.api.debugger.jpda" name="LineBreakpoint"/>
297
    </change>
(-)api/manifest.mf (-2 / +1 lines)
Line 4 Link Here
4
OpenIDE-Module-Specification-Version: 1.2
4
OpenIDE-Module-Specification-Version: 1.3
5
--
(-)api/src/org/netbeans/api/debugger/jpda/LineBreakpoint.java (+28 lines)
Line 42 Link Here
42
    public static final String          PROP_SOURCE_PATH = new String ("sourcePath"); // NOI18N
43
    /** Property name constant. */
Line 48 Link Here
50
    private String                      sourcePath = null; // NOI18N
Line 195 Link Here
198
    /**
199
     * Returns source path.
200
     *
201
     * @return a source path
202
     *
203
     * @since 1.3
204
     */
205
    public String getSourcePath() {
206
        return sourcePath;
207
    }
208
209
    /**
210
     * Sets source path.
211
     *
212
     * @param sp a new source path
213
     *
214
     * @since 1.3
215
     */
216
    public void setSourcePath (String sp) {
217
        if (sp != null) sp = sp.trim();
218
        String old = sourcePath;
219
        sourcePath = sp;
220
        firePropertyChange (PROP_SOURCE_PATH, old, sourcePath);
221
    }
222
    

Return to bug 54529