Index: api/apichanges.xml =================================================================== RCS file: /cvs/debuggerjpda/api/apichanges.xml,v retrieving revision 1.7 diff -r1.7 apichanges.xml 278a279,297 > > > LineBreakpoint supplied with the information about the source path where it is set. > > > > > >

> A line breakpoint does not contain the information > about the source path where it is set. There is no > way how to differ between breakpoints in the case > when > - several JSPs have the same name AND > - these JSPs are statically included into one JSP page. >

>
> >
Index: api/manifest.mf =================================================================== RCS file: /cvs/debuggerjpda/api/manifest.mf,v retrieving revision 1.7 diff -r1.7 manifest.mf 4c4 < OpenIDE-Module-Specification-Version: 1.2 --- > OpenIDE-Module-Specification-Version: 1.3 Index: api/src/org/netbeans/api/debugger/jpda/LineBreakpoint.java =================================================================== RCS file: /cvs/debuggerjpda/api/src/org/netbeans/api/debugger/jpda/LineBreakpoint.java,v retrieving revision 1.6 diff -r1.6 LineBreakpoint.java 41a42,43 > public static final String PROP_SOURCE_PATH = new String ("sourcePath"); // NOI18N > /** Property name constant. */ 47a50 > private String sourcePath = null; // NOI18N 194a198,222 > /** > * Returns source path. > * > * @return a source path > * > * @since 1.3 > */ > public String getSourcePath() { > return sourcePath; > } > > /** > * Sets source path. > * > * @param sp a new source path > * > * @since 1.3 > */ > public void setSourcePath (String sp) { > if (sp != null) sp = sp.trim(); > String old = sourcePath; > sourcePath = sp; > firePropertyChange (PROP_SOURCE_PATH, old, sourcePath); > } >