Index: tomcatint/tomcat5/nbproject/project.xml =================================================================== RCS file: /cvs/tomcatint/tomcat5/nbproject/project.xml,v retrieving revision 1.11 diff -u -r1.11 project.xml --- tomcatint/tomcat5/nbproject/project.xml 1 Aug 2005 15:50:30 -0000 1.11 +++ tomcatint/tomcat5/nbproject/project.xml 12 Aug 2005 09:00:08 -0000 @@ -47,7 +47,7 @@ - 1 + 2 Index: j2ee/debug/nbproject/project.xml =================================================================== RCS file: /cvs/j2ee/debug/nbproject/project.xml,v retrieving revision 1.4 diff -u -r1.4 project.xml --- j2ee/debug/nbproject/project.xml 4 Jun 2005 05:16:22 -0000 1.4 +++ j2ee/debug/nbproject/project.xml 12 Aug 2005 09:00:12 -0000 @@ -30,7 +30,7 @@ - 1 + 2 Index: j2ee/earproject/nbproject/project.xml =================================================================== RCS file: /cvs/j2ee/earproject/nbproject/project.xml,v retrieving revision 1.10 diff -u -r1.10 project.xml --- j2ee/earproject/nbproject/project.xml 4 Jun 2005 05:16:22 -0000 1.10 +++ j2ee/earproject/nbproject/project.xml 12 Aug 2005 09:00:13 -0000 @@ -39,7 +39,7 @@ - 1 + 2 Index: j2ee/ejbjarproject/nbproject/project.xml =================================================================== RCS file: /cvs/j2ee/ejbjarproject/nbproject/project.xml,v retrieving revision 1.18 diff -u -r1.18 project.xml --- j2ee/ejbjarproject/nbproject/project.xml 3 Aug 2005 01:46:06 -0000 1.18 +++ j2ee/ejbjarproject/nbproject/project.xml 12 Aug 2005 09:00:14 -0000 @@ -55,7 +55,7 @@ - 1 + 2 Index: j2eeserver/nbproject/project.xml =================================================================== RCS file: /cvs/j2eeserver/nbproject/project.xml,v retrieving revision 1.9 diff -u -r1.9 project.xml --- j2eeserver/nbproject/project.xml 4 Jun 2005 05:16:25 -0000 1.9 +++ j2eeserver/nbproject/project.xml 12 Aug 2005 09:00:39 -0000 @@ -188,7 +188,7 @@ - 1 + 2 Index: debuggerjpda/ant/nbproject/project.xml =================================================================== RCS file: /cvs/debuggerjpda/ant/nbproject/project.xml,v retrieving revision 1.18 diff -u -r1.18 project.xml --- debuggerjpda/ant/nbproject/project.xml 11 Jun 2005 07:01:37 -0000 1.18 +++ debuggerjpda/ant/nbproject/project.xml 12 Aug 2005 09:00:40 -0000 @@ -106,7 +106,7 @@ - 1 + 2 Index: debuggerjpda/api/apichanges.xml =================================================================== RCS file: /cvs/debuggerjpda/api/apichanges.xml,v retrieving revision 1.9 diff -u -r1.9 apichanges.xml --- debuggerjpda/api/apichanges.xml 28 Jul 2005 15:00:24 -0000 1.9 +++ debuggerjpda/api/apichanges.xml 12 Aug 2005 09:00:41 -0000 @@ -311,6 +311,28 @@

+ + + JPDA API interfaces that correspond to JDI API declared as not to implement. + + + + + +

+ JPDA API represents JDI functionality. + Since JDI interfaces evolve from one version to another, it's + necessary to declare that interfaces in + org.netbeans.api.debugger.jpda package should not be implemented, + since new methods can be added to these interfaces at any time + to keep up with the JDI functionality. +

+

+ Also JPDABreakpointEvent and JPDABreakpointListener are moved to + newly created org.netbeans.api.debugger.jpda.event package. +

+
+
Index: debuggerjpda/api/manifest.mf =================================================================== RCS file: /cvs/debuggerjpda/api/manifest.mf,v retrieving revision 1.10 diff -u -r1.10 manifest.mf --- debuggerjpda/api/manifest.mf 28 Jul 2005 15:00:24 -0000 1.10 +++ debuggerjpda/api/manifest.mf 12 Aug 2005 09:00:41 -0000 @@ -1,6 +1,6 @@ Manifest-Version: 1.0 -OpenIDE-Module: org.netbeans.api.debugger.jpda/1 +OpenIDE-Module: org.netbeans.api.debugger.jpda/2 OpenIDE-Module-Localizing-Bundle: org/netbeans/api/debugger/jpda/Bundle.properties -OpenIDE-Module-Specification-Version: 1.5 +OpenIDE-Module-Specification-Version: 2.0 OpenIDE-Module-Package-Dependencies: com.sun.jdi[VirtualMachineManager] Index: debuggerjpda/api/nbproject/project.xml =================================================================== RCS file: /cvs/debuggerjpda/api/nbproject/project.xml,v retrieving revision 1.7 diff -u -r1.7 project.xml --- debuggerjpda/api/nbproject/project.xml 4 Jun 2005 05:16:03 -0000 1.7 +++ debuggerjpda/api/nbproject/project.xml 12 Aug 2005 09:00:42 -0000 @@ -36,6 +36,7 @@ org.netbeans.api.debugger.jpda + org.netbeans.api.debugger.jpda.event org.netbeans.spi.debugger.jpda Index: debuggerjpda/api/src/org/netbeans/api/debugger/jpda/CallStackFrame.java =================================================================== RCS file: /cvs/debuggerjpda/api/src/org/netbeans/api/debugger/jpda/CallStackFrame.java,v retrieving revision 1.5 diff -u -r1.5 CallStackFrame.java --- debuggerjpda/api/src/org/netbeans/api/debugger/jpda/CallStackFrame.java 7 Jan 2005 09:33:20 -0000 1.5 +++ debuggerjpda/api/src/org/netbeans/api/debugger/jpda/CallStackFrame.java 12 Aug 2005 09:00:42 -0000 @@ -7,7 +7,7 @@ * http://www.sun.com/ * * The Original Code is NetBeans. The Initial Developer of the Original - * Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun + * Code is Sun Microsystems, Inc. Portions Copyright 1997-2005 Sun * Microsystems, Inc. All Rights Reserved. */ @@ -20,6 +20,11 @@ /** * Represents one stack frame. + * + *
+ * Since JDI interfaces evolve from one version to another, it's strongly recommended
+ * not to implement this interface in client code. New methods can be added to
+ * this interface at any time to keep up with the JDI functionality.
* * @author Jan Jancura */ Index: debuggerjpda/api/src/org/netbeans/api/debugger/jpda/Field.java =================================================================== RCS file: /cvs/debuggerjpda/api/src/org/netbeans/api/debugger/jpda/Field.java,v retrieving revision 1.4 diff -u -r1.4 Field.java --- debuggerjpda/api/src/org/netbeans/api/debugger/jpda/Field.java 7 May 2004 14:14:19 -0000 1.4 +++ debuggerjpda/api/src/org/netbeans/api/debugger/jpda/Field.java 12 Aug 2005 09:00:42 -0000 @@ -19,6 +19,11 @@ * interface, if the represented field contains not primitive value (object * value). * + *
+ * Since JDI interfaces evolve from one version to another, it's strongly recommended
+ * not to implement this interface in client code. New methods can be added to
+ * this interface at any time to keep up with the JDI functionality.
+ * * @see ObjectVariable * @author Jan Jancura */ Index: debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDABreakpoint.java =================================================================== RCS file: /cvs/debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDABreakpoint.java,v retrieving revision 1.8 diff -u -r1.8 JPDABreakpoint.java --- debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDABreakpoint.java 30 Sep 2004 11:38:59 -0000 1.8 +++ debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDABreakpoint.java 12 Aug 2005 09:00:42 -0000 @@ -19,6 +19,8 @@ import java.util.Iterator; import org.netbeans.api.debugger.Breakpoint; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointEvent; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointListener; /** * Abstract definition of JPDA breakpoint. cvs server: debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDABreakpointEvent.java was removed, no comparison available cvs server: debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDABreakpointListener.java was removed, no comparison available Index: debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDADebugger.java =================================================================== RCS file: /cvs/debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDADebugger.java,v retrieving revision 1.17 diff -u -r1.17 JPDADebugger.java --- debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDADebugger.java 2 Aug 2005 15:55:15 -0000 1.17 +++ debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDADebugger.java 12 Aug 2005 09:00:42 -0000 @@ -32,6 +32,7 @@ import org.netbeans.api.debugger.DebuggerManager; import org.netbeans.api.debugger.jpda.InvalidExpressionException; import org.netbeans.api.debugger.jpda.Variable; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointEvent; /** Index: debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDAThread.java =================================================================== RCS file: /cvs/debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDAThread.java,v retrieving revision 1.5 diff -u -r1.5 JPDAThread.java --- debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDAThread.java 7 Jan 2005 09:33:20 -0000 1.5 +++ debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDAThread.java 12 Aug 2005 09:00:42 -0000 @@ -7,7 +7,7 @@ * http://www.sun.com/ * * The Original Code is NetBeans. The Initial Developer of the Original - * Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun + * Code is Sun Microsystems, Inc. Portions Copyright 1997-2005 Sun * Microsystems, Inc. All Rights Reserved. */ @@ -21,6 +21,11 @@ /** * Represents one Java thread in debugged process. * + *
+ * Since JDI interfaces evolve from one version to another, it's strongly recommended
+ * not to implement this interface in client code. New methods can be added to
+ * this interface at any time to keep up with the JDI functionality.
+ * * @author Jan Jancura */ public interface JPDAThread { Index: debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDAThreadGroup.java =================================================================== RCS file: /cvs/debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDAThreadGroup.java,v retrieving revision 1.2 diff -u -r1.2 JPDAThreadGroup.java --- debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDAThreadGroup.java 31 Mar 2004 07:17:41 -0000 1.2 +++ debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDAThreadGroup.java 12 Aug 2005 09:00:43 -0000 @@ -7,7 +7,7 @@ * http://www.sun.com/ * * The Original Code is NetBeans. The Initial Developer of the Original - * Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun + * Code is Sun Microsystems, Inc. Portions Copyright 1997-2005 Sun * Microsystems, Inc. All Rights Reserved. */ @@ -17,6 +17,11 @@ /** * Represents one Java thread group in debugged process. * + *
+ * Since JDI interfaces evolve from one version to another, it's strongly recommended
+ * not to implement this interface in client code. New methods can be added to
+ * this interface at any time to keep up with the JDI functionality.
+ * * @author Jan Jancura */ public interface JPDAThreadGroup { Index: debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDAWatch.java =================================================================== RCS file: /cvs/debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDAWatch.java,v retrieving revision 1.6 diff -u -r1.6 JPDAWatch.java --- debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDAWatch.java 17 Jun 2004 13:02:39 -0000 1.6 +++ debuggerjpda/api/src/org/netbeans/api/debugger/jpda/JPDAWatch.java 12 Aug 2005 09:00:43 -0000 @@ -7,7 +7,7 @@ * http://www.sun.com/ * * The Original Code is NetBeans. The Initial Developer of the Original - * Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun + * Code is Sun Microsystems, Inc. Portions Copyright 1997-2005 Sun * Microsystems, Inc. All Rights Reserved. */ @@ -17,6 +17,11 @@ /** * Represents watch in JPDA debugger. + * + *
+ * It's strongly recommended
+ * not to implement this interface in client code. New methods can be added to
+ * this interface at any time to keep up with the JDI functionality.
* * @author Jan Jancura */ Index: debuggerjpda/api/src/org/netbeans/api/debugger/jpda/LocalVariable.java =================================================================== RCS file: /cvs/debuggerjpda/api/src/org/netbeans/api/debugger/jpda/LocalVariable.java,v retrieving revision 1.4 diff -u -r1.4 LocalVariable.java --- debuggerjpda/api/src/org/netbeans/api/debugger/jpda/LocalVariable.java 10 May 2004 08:44:47 -0000 1.4 +++ debuggerjpda/api/src/org/netbeans/api/debugger/jpda/LocalVariable.java 12 Aug 2005 09:00:43 -0000 @@ -7,7 +7,7 @@ * http://www.sun.com/ * * The Original Code is NetBeans. The Initial Developer of the Original - * Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun + * Code is Sun Microsystems, Inc. Portions Copyright 1997-2005 Sun * Microsystems, Inc. All Rights Reserved. */ @@ -18,6 +18,11 @@ * Represents one local. This interface is extended by {@link ObjectVariable} * interface, if the represented local contains not primitive value (object * value). + * + *
+ * Since JDI interfaces evolve from one version to another, it's strongly recommended
+ * not to implement this interface in client code. New methods can be added to
+ * this interface at any time to keep up with the JDI functionality.
* * @see ObjectVariable * @author Jan Jancura Index: debuggerjpda/api/src/org/netbeans/api/debugger/jpda/ObjectVariable.java =================================================================== RCS file: /cvs/debuggerjpda/api/src/org/netbeans/api/debugger/jpda/ObjectVariable.java,v retrieving revision 1.6 diff -u -r1.6 ObjectVariable.java --- debuggerjpda/api/src/org/netbeans/api/debugger/jpda/ObjectVariable.java 3 Jun 2005 13:38:07 -0000 1.6 +++ debuggerjpda/api/src/org/netbeans/api/debugger/jpda/ObjectVariable.java 12 Aug 2005 09:00:43 -0000 @@ -7,7 +7,7 @@ * http://www.sun.com/ * * The Original Code is NetBeans. The Initial Developer of the Original - * Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun + * Code is Sun Microsystems, Inc. Portions Copyright 1997-2005 Sun * Microsystems, Inc. All Rights Reserved. */ @@ -18,6 +18,11 @@ * Represents instance of some object in debugged JVM. This interface can * be optionally inplemented by a implementation of {@link LocalVariable} or * {@link Field} interfaces. + * + *
+ * Since JDI interfaces evolve from one version to another, it's strongly recommended
+ * not to implement this interface in client code. New methods can be added to
+ * this interface at any time to keep up with the JDI functionality.
* * @see LocalVariable * @see Field Index: debuggerjpda/api/src/org/netbeans/api/debugger/jpda/SmartSteppingFilter.java =================================================================== RCS file: /cvs/debuggerjpda/api/src/org/netbeans/api/debugger/jpda/SmartSteppingFilter.java,v retrieving revision 1.3 diff -u -r1.3 SmartSteppingFilter.java --- debuggerjpda/api/src/org/netbeans/api/debugger/jpda/SmartSteppingFilter.java 15 May 2004 21:32:01 -0000 1.3 +++ debuggerjpda/api/src/org/netbeans/api/debugger/jpda/SmartSteppingFilter.java 12 Aug 2005 09:00:43 -0000 @@ -7,7 +7,7 @@ * http://www.sun.com/ * * The Original Code is NetBeans. The Initial Developer of the Original - * Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun + * Code is Sun Microsystems, Inc. Portions Copyright 1997-2005 Sun * Microsystems, Inc. All Rights Reserved. */ @@ -19,6 +19,11 @@ /** * Defines list of class exclusion filters to be used to filter stepping * in debugged session. + * + *
+ * It's strongly recommended
+ * not to implement this interface in client code. New methods can be added to
+ * this interface at any time to keep up with the JDI functionality.
* * @author Jan Jancura */ Index: debuggerjpda/api/src/org/netbeans/api/debugger/jpda/Super.java =================================================================== RCS file: /cvs/debuggerjpda/api/src/org/netbeans/api/debugger/jpda/Super.java,v retrieving revision 1.2 diff -u -r1.2 Super.java --- debuggerjpda/api/src/org/netbeans/api/debugger/jpda/Super.java 31 Mar 2004 07:17:44 -0000 1.2 +++ debuggerjpda/api/src/org/netbeans/api/debugger/jpda/Super.java 12 Aug 2005 09:00:43 -0000 @@ -17,6 +17,11 @@ /** * Represents super class of some object and its value. * + *
+ * Since JDI interfaces evolve from one version to another, it's strongly recommended
+ * not to implement this interface in client code. New methods can be added to
+ * this interface at any time to keep up with the JDI functionality.
+ * * @see ObjectVariable#getSuper * * @author Jan Jancura Index: debuggerjpda/api/src/org/netbeans/api/debugger/jpda/This.java =================================================================== RCS file: /cvs/debuggerjpda/api/src/org/netbeans/api/debugger/jpda/This.java,v retrieving revision 1.2 diff -u -r1.2 This.java --- debuggerjpda/api/src/org/netbeans/api/debugger/jpda/This.java 31 Mar 2004 07:17:45 -0000 1.2 +++ debuggerjpda/api/src/org/netbeans/api/debugger/jpda/This.java 12 Aug 2005 09:00:43 -0000 @@ -17,6 +17,11 @@ /** * Represents "this" value for call stack frame. * + *
+ * Since JDI interfaces evolve from one version to another, it's strongly recommended
+ * not to implement this interface in client code. New methods can be added to
+ * this interface at any time to keep up with the JDI functionality.
+ * * @see CallStackFrame#getThisVariable * * @author Jan Jancura Index: debuggerjpda/api/src/org/netbeans/api/debugger/jpda/Variable.java =================================================================== RCS file: /cvs/debuggerjpda/api/src/org/netbeans/api/debugger/jpda/Variable.java,v retrieving revision 1.2 diff -u -r1.2 Variable.java --- debuggerjpda/api/src/org/netbeans/api/debugger/jpda/Variable.java 31 Mar 2004 07:17:45 -0000 1.2 +++ debuggerjpda/api/src/org/netbeans/api/debugger/jpda/Variable.java 12 Aug 2005 09:00:43 -0000 @@ -7,7 +7,7 @@ * http://www.sun.com/ * * The Original Code is NetBeans. The Initial Developer of the Original - * Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun + * Code is Sun Microsystems, Inc. Portions Copyright 1997-2005 Sun * Microsystems, Inc. All Rights Reserved. */ @@ -16,6 +16,11 @@ /** * Represents some variable in debugged JVM. + * + *
+ * Since JDI interfaces evolve from one version to another, it's strongly recommended
+ * not to implement this interface in client code. New methods can be added to
+ * this interface at any time to keep up with the JDI functionality.
* * @see LocalVariable * @see Field Index: debuggerjpda/api/src/org/netbeans/api/debugger/jpda/package.html =================================================================== RCS file: /cvs/debuggerjpda/api/src/org/netbeans/api/debugger/jpda/package.html,v retrieving revision 1.2 diff -u -r1.2 package.html --- debuggerjpda/api/src/org/netbeans/api/debugger/jpda/package.html 31 Mar 2004 07:17:46 -0000 1.2 +++ debuggerjpda/api/src/org/netbeans/api/debugger/jpda/package.html 12 Aug 2005 09:00:43 -0000 @@ -17,15 +17,19 @@ -- http://www.sun.com/ -- -- The Original Code is NetBeans. The Initial Developer of the Original - -- Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun + -- Code is Sun Microsystems, Inc. Portions Copyright 1997-2005 Sun -- Microsystems, Inc. All Rights Reserved. --> -JPDA Debugger APIs. -
    - -
+JPDA Debugger APIs provide representation of JDI functionality. Interfaces in +org.netbeans.api.debugger.jpda package correspond to appropriate JDI interfaces. +
+
+
+Since JDI interfaces evolve from one version to another, it's strongly recommended
+not to implement any interface in this package. New methods can be added to
+these interfaces at any time to keep up with the JDI functionality.


cvs server: debuggerjpda/api/src/org/netbeans/api/debugger/jpda/event/JPDABreakpointEvent.java is a new entry, no comparison available cvs server: debuggerjpda/api/src/org/netbeans/api/debugger/jpda/event/JPDABreakpointListener.java is a new entry, no comparison available Index: debuggerjpda/nbproject/project.xml =================================================================== RCS file: /cvs/debuggerjpda/nbproject/project.xml,v retrieving revision 1.12 diff -u -r1.12 project.xml --- debuggerjpda/nbproject/project.xml 28 Jul 2005 15:00:28 -0000 1.12 +++ debuggerjpda/nbproject/project.xml 12 Aug 2005 09:00:43 -0000 @@ -30,7 +30,7 @@ - 1 + 2
Index: debuggerjpda/src/org/netbeans/modules/debugger/jpda/JPDADebuggerImpl.java =================================================================== RCS file: /cvs/debuggerjpda/src/org/netbeans/modules/debugger/jpda/JPDADebuggerImpl.java,v retrieving revision 1.78 diff -u -r1.78 JPDADebuggerImpl.java --- debuggerjpda/src/org/netbeans/modules/debugger/jpda/JPDADebuggerImpl.java 28 Jul 2005 15:00:24 -0000 1.78 +++ debuggerjpda/src/org/netbeans/modules/debugger/jpda/JPDADebuggerImpl.java 12 Aug 2005 09:00:43 -0000 @@ -60,7 +60,7 @@ import org.netbeans.api.debugger.jpda.CallStackFrame; import org.netbeans.api.debugger.jpda.DebuggerStartException; import org.netbeans.api.debugger.jpda.JPDABreakpoint; -import org.netbeans.api.debugger.jpda.JPDABreakpointEvent; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointEvent; import org.netbeans.api.debugger.jpda.JPDADebugger; import org.netbeans.api.debugger.jpda.JPDAThread; import org.netbeans.api.debugger.jpda.SmartSteppingFilter; Index: debuggerjpda/src/org/netbeans/modules/debugger/jpda/breakpoints/BreakpointImpl.java =================================================================== RCS file: /cvs/debuggerjpda/src/org/netbeans/modules/debugger/jpda/breakpoints/BreakpointImpl.java,v retrieving revision 1.20 diff -u -r1.20 BreakpointImpl.java --- debuggerjpda/src/org/netbeans/modules/debugger/jpda/breakpoints/BreakpointImpl.java 25 May 2005 12:27:11 -0000 1.20 +++ debuggerjpda/src/org/netbeans/modules/debugger/jpda/breakpoints/BreakpointImpl.java 12 Aug 2005 09:00:44 -0000 @@ -31,7 +31,7 @@ import org.netbeans.api.debugger.jpda.InvalidExpressionException; import org.netbeans.api.debugger.jpda.JPDABreakpoint; -import org.netbeans.api.debugger.jpda.JPDABreakpointEvent; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointEvent; import org.netbeans.api.debugger.jpda.JPDADebugger; import org.netbeans.api.debugger.Session; import org.netbeans.api.debugger.DebuggerManager; Index: debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/BreakpointResumeTest.java =================================================================== RCS file: /cvs/debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/BreakpointResumeTest.java,v retrieving revision 1.4 diff -u -r1.4 BreakpointResumeTest.java --- debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/BreakpointResumeTest.java 29 Nov 2004 19:08:40 -0000 1.4 +++ debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/BreakpointResumeTest.java 12 Aug 2005 09:00:44 -0000 @@ -16,6 +16,8 @@ import org.netbeans.api.debugger.DebuggerManager; import java.net.URL; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointEvent; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointListener; import org.netbeans.junit.NbTestCase; Index: debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/ClassBreakpointTest.java =================================================================== RCS file: /cvs/debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/ClassBreakpointTest.java,v retrieving revision 1.4 diff -u -r1.4 ClassBreakpointTest.java --- debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/ClassBreakpointTest.java 29 Nov 2004 19:08:41 -0000 1.4 +++ debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/ClassBreakpointTest.java 12 Aug 2005 09:00:44 -0000 @@ -14,6 +14,8 @@ package org.netbeans.api.debugger.jpda; import org.netbeans.api.debugger.DebuggerManager; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointEvent; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointListener; import org.netbeans.junit.NbTestCase; Index: debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/ExceptionBreakpointTest.java =================================================================== RCS file: /cvs/debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/ExceptionBreakpointTest.java,v retrieving revision 1.4 diff -u -r1.4 ExceptionBreakpointTest.java --- debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/ExceptionBreakpointTest.java 29 Nov 2004 19:08:42 -0000 1.4 +++ debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/ExceptionBreakpointTest.java 12 Aug 2005 09:00:45 -0000 @@ -14,6 +14,8 @@ package org.netbeans.api.debugger.jpda; import org.netbeans.api.debugger.DebuggerManager; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointEvent; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointListener; import org.netbeans.junit.NbTestCase; /** Index: debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/FieldBreakpointTest.java =================================================================== RCS file: /cvs/debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/FieldBreakpointTest.java,v retrieving revision 1.8 diff -u -r1.8 FieldBreakpointTest.java --- debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/FieldBreakpointTest.java 19 Jan 2005 10:37:17 -0000 1.8 +++ debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/FieldBreakpointTest.java 12 Aug 2005 09:00:45 -0000 @@ -15,6 +15,8 @@ import com.sun.jdi.AbsentInformationException; import org.netbeans.api.debugger.DebuggerManager; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointEvent; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointListener; import org.netbeans.junit.NbTestCase; import org.openide.util.RequestProcessor; Index: debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/JspLineBreakpointTest.java =================================================================== RCS file: /cvs/debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/JspLineBreakpointTest.java,v retrieving revision 1.2 diff -u -r1.2 JspLineBreakpointTest.java --- debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/JspLineBreakpointTest.java 4 May 2005 08:43:35 -0000 1.2 +++ debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/JspLineBreakpointTest.java 12 Aug 2005 09:00:45 -0000 @@ -21,6 +21,8 @@ import java.net.URL; import junit.framework.AssertionFailedError; import org.netbeans.api.debugger.DebuggerManager; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointEvent; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointListener; import org.netbeans.junit.NbTestCase; Index: debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/LineBreakpointTest.java =================================================================== RCS file: /cvs/debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/LineBreakpointTest.java,v retrieving revision 1.8 diff -u -r1.8 LineBreakpointTest.java --- debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/LineBreakpointTest.java 29 Nov 2004 19:08:42 -0000 1.8 +++ debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/LineBreakpointTest.java 12 Aug 2005 09:00:45 -0000 @@ -18,6 +18,8 @@ import com.sun.jdi.connect.IllegalConnectorArgumentsException; import org.netbeans.api.debugger.DebuggerManager; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointEvent; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointListener; import org.netbeans.junit.NbTestCase; /** Index: debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/MethodBreakpointTest.java =================================================================== RCS file: /cvs/debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/MethodBreakpointTest.java,v retrieving revision 1.7 diff -u -r1.7 MethodBreakpointTest.java --- debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/MethodBreakpointTest.java 19 Jan 2005 10:37:17 -0000 1.7 +++ debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/MethodBreakpointTest.java 12 Aug 2005 09:00:45 -0000 @@ -14,6 +14,8 @@ package org.netbeans.api.debugger.jpda; import org.netbeans.api.debugger.DebuggerManager; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointEvent; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointListener; import org.netbeans.junit.NbTestCase; Index: debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/ThreadBreakpointTest.java =================================================================== RCS file: /cvs/debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/ThreadBreakpointTest.java,v retrieving revision 1.5 diff -u -r1.5 ThreadBreakpointTest.java --- debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/ThreadBreakpointTest.java 29 Nov 2004 19:08:43 -0000 1.5 +++ debuggerjpda/test/unit/src/org/netbeans/api/debugger/jpda/ThreadBreakpointTest.java 12 Aug 2005 09:00:45 -0000 @@ -14,6 +14,8 @@ package org.netbeans.api.debugger.jpda; import org.netbeans.api.debugger.DebuggerManager; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointEvent; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointListener; import org.netbeans.junit.NbTestCase; /** Index: debuggerjpda/ui/nbproject/project.xml =================================================================== RCS file: /cvs/debuggerjpda/ui/nbproject/project.xml,v retrieving revision 1.9 diff -u -r1.9 project.xml --- debuggerjpda/ui/nbproject/project.xml 3 Aug 2005 15:41:56 -0000 1.9 +++ debuggerjpda/ui/nbproject/project.xml 12 Aug 2005 09:00:45 -0000 @@ -30,7 +30,7 @@ - 1 + 2 Index: debuggerjpda/ui/src/org/netbeans/modules/debugger/jpda/ui/BreakpointOutput.java =================================================================== RCS file: /cvs/debuggerjpda/ui/src/org/netbeans/modules/debugger/jpda/ui/BreakpointOutput.java,v retrieving revision 1.14 diff -u -r1.14 BreakpointOutput.java --- debuggerjpda/ui/src/org/netbeans/modules/debugger/jpda/ui/BreakpointOutput.java 10 Feb 2005 08:51:16 -0000 1.14 +++ debuggerjpda/ui/src/org/netbeans/modules/debugger/jpda/ui/BreakpointOutput.java 12 Aug 2005 09:00:46 -0000 @@ -19,6 +19,8 @@ import org.netbeans.api.debugger.DebuggerManager; import org.netbeans.api.debugger.Session; import org.netbeans.api.debugger.jpda.*; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointEvent; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointListener; import org.netbeans.modules.debugger.jpda.ui.models.BreakpointsNodeModel; import org.netbeans.spi.debugger.ContextProvider; Index: debuggerjpda/ui/src/org/netbeans/modules/debugger/jpda/ui/actions/RunIntoMethodActionProvider.java =================================================================== RCS file: /cvs/debuggerjpda/ui/src/org/netbeans/modules/debugger/jpda/ui/actions/RunIntoMethodActionProvider.java,v retrieving revision 1.10 diff -u -r1.10 RunIntoMethodActionProvider.java --- debuggerjpda/ui/src/org/netbeans/modules/debugger/jpda/ui/actions/RunIntoMethodActionProvider.java 28 Jul 2005 15:00:27 -0000 1.10 +++ debuggerjpda/ui/src/org/netbeans/modules/debugger/jpda/ui/actions/RunIntoMethodActionProvider.java 12 Aug 2005 09:00:46 -0000 @@ -29,8 +29,8 @@ import org.netbeans.api.debugger.Session; import org.netbeans.api.debugger.jpda.JPDADebugger; import org.netbeans.api.debugger.jpda.LineBreakpoint; -import org.netbeans.api.debugger.jpda.JPDABreakpointListener; -import org.netbeans.api.debugger.jpda.JPDABreakpointEvent; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointListener; +import org.netbeans.api.debugger.jpda.event.JPDABreakpointEvent; import org.netbeans.api.debugger.jpda.JPDAStep; import org.netbeans.modules.debugger.jpda.ui.EditorContextBridge; import org.netbeans.spi.debugger.ActionsProviderSupport; Index: web/jspdebug/nbproject/project.xml =================================================================== RCS file: /cvs/web/jspdebug/nbproject/project.xml,v retrieving revision 1.11 diff -u -r1.11 project.xml --- web/jspdebug/nbproject/project.xml 4 Jun 2005 05:17:12 -0000 1.11 +++ web/jspdebug/nbproject/project.xml 12 Aug 2005 09:00:47 -0000 @@ -60,7 +60,7 @@ - 1 + 2 Index: serverplugins/sun/appsrv81/manifest.mf =================================================================== RCS file: /cvs/serverplugins/sun/appsrv81/manifest.mf,v retrieving revision 1.5 diff -u -r1.5 manifest.mf --- serverplugins/sun/appsrv81/manifest.mf 21 Jun 2005 14:50:03 -0000 1.5 +++ serverplugins/sun/appsrv81/manifest.mf 12 Aug 2005 09:00:48 -0000 @@ -20,7 +20,7 @@ org.netbeans.modules.j2eeserver/3 > 1.5, org.netbeans.modules.j2eeapis/1, org.netbeans.api.debugger/1, - org.netbeans.api.debugger.jpda/1, + org.netbeans.api.debugger.jpda/2, org.netbeans.modules.j2ee.dd/1 > 1.3, org.netbeans.modules.schema2beans/1, org.netbeans.modules.db/1 = 2, Index: serverplugins/sun/appsrv81/nbproject/project.xml =================================================================== RCS file: /cvs/serverplugins/sun/appsrv81/nbproject/project.xml,v retrieving revision 1.4 diff -u -r1.4 project.xml --- serverplugins/sun/appsrv81/nbproject/project.xml 7 Jul 2005 08:10:45 -0000 1.4 +++ serverplugins/sun/appsrv81/nbproject/project.xml 12 Aug 2005 09:00:50 -0000 @@ -32,7 +32,7 @@ - 1 + 2 Index: web/project/nbproject/project.xml =================================================================== RCS file: /cvs/web/project/nbproject/project.xml,v retrieving revision 1.30 diff -u -r1.30 project.xml --- web/project/nbproject/project.xml 20 Jul 2005 13:44:34 -0000 1.30 +++ web/project/nbproject/project.xml 12 Aug 2005 09:00:56 -0000 @@ -47,7 +47,7 @@ - 1 + 2 Index: ide/golden/cluster-deps.txt =================================================================== RCS file: /cvs/ide/golden/cluster-deps.txt,v retrieving revision 1.21 diff -u -r1.21 cluster-deps.txt --- ide/golden/cluster-deps.txt 3 Aug 2005 01:47:02 -0000 1.21 +++ ide/golden/cluster-deps.txt 12 Aug 2005 09:00:59 -0000 @@ -34,7 +34,7 @@ REQUIRES javax.jmi.reflect/1 (ide) REQUIRES org.apache.tools.ant.module/3 (ide) REQUIRES org.netbeans.api.debugger/1 (ide) - REQUIRES org.netbeans.api.debugger.jpda/1 (ide) + REQUIRES org.netbeans.api.debugger.jpda/2 (ide) REQUIRES org.netbeans.api.java/1 (ide) REQUIRES org.netbeans.api.mdr/1 (ide) REQUIRES org.netbeans.api.progress/1 (platform) Index: ide/golden/deps.txt =================================================================== RCS file: /cvs/ide/golden/deps.txt,v retrieving revision 1.120 diff -u -r1.120 deps.txt --- ide/golden/deps.txt 3 Aug 2005 01:47:02 -0000 1.120 +++ ide/golden/deps.txt 12 Aug 2005 09:01:01 -0000 @@ -41,7 +41,7 @@ REQUIRES org.openide.filesystems (platform) REQUIRES org.openide.modules.ModuleFormat1 REQUIRES org.openide.util (platform) -MODULE org.netbeans.api.debugger.jpda/1 (ide) +MODULE org.netbeans.api.debugger.jpda/2 (ide) REQUIRES org.netbeans.api.debugger/1 (ide) REQUIRES org.netbeans.spi.viewmodel/2 (ide) REQUIRES org.openide.modules.ModuleFormat1 @@ -387,7 +387,7 @@ REQUIRES org.openide.windows (platform) MODULE org.netbeans.modules.debugger.jpda/2 (ide) REQUIRES org.netbeans.api.debugger/1 (ide) - REQUIRES org.netbeans.api.debugger.jpda/1 (ide) + REQUIRES org.netbeans.api.debugger.jpda/2 (ide) REQUIRES org.netbeans.spi.viewmodel/2 (ide) REQUIRES org.openide.filesystems (platform) REQUIRES org.openide.modules.ModuleFormat1 @@ -395,7 +395,7 @@ MODULE org.netbeans.modules.debugger.jpda.ant (ide) REQUIRES org.apache.tools.ant.module/3 (ide) REQUIRES org.netbeans.api.debugger/1 (ide) - REQUIRES org.netbeans.api.debugger.jpda/1 (ide) + REQUIRES org.netbeans.api.debugger.jpda/2 (ide) REQUIRES org.netbeans.api.java/1 (ide) REQUIRES org.netbeans.modules.debugger.jpda.ui/1 (ide) REQUIRES org.netbeans.modules.java.platform/1 (ide) @@ -413,13 +413,15 @@ REQUIRES org.openide.windows (platform) MODULE org.netbeans.modules.debugger.jpda.ui/1 (ide) REQUIRES org.netbeans.api.debugger/1 (ide) - REQUIRES org.netbeans.api.debugger.jpda/1 (ide) + REQUIRES org.netbeans.api.debugger.jpda/2 (ide) REQUIRES org.netbeans.modules.debugger.jpda/2 (ide) REQUIRES org.netbeans.spi.debugger.ui/1 (ide) REQUIRES org.netbeans.spi.viewmodel/2 (ide) REQUIRES org.openide.awt (platform) REQUIRES org.openide.dialogs (platform) + REQUIRES org.openide.filesystems (platform) REQUIRES org.openide.io (platform) + REQUIRES org.openide.loaders (platform) REQUIRES org.openide.modules.ModuleFormat1 REQUIRES org.openide.nodes (platform) REQUIRES org.openide.util (platform) @@ -787,14 +789,14 @@ REQUIRES org.openide.windows (platform) MODULE org.netbeans.modules.j2ee.debug/1 (j2ee) REQUIRES org.netbeans.api.debugger/1 (ide) - REQUIRES org.netbeans.api.debugger.jpda/1 (ide) + REQUIRES org.netbeans.api.debugger.jpda/2 (ide) REQUIRES org.netbeans.spi.viewmodel/2 (ide) REQUIRES org.openide.modules.ModuleFormat1 REQUIRES org.openide.util (platform) MODULE org.netbeans.modules.j2ee.earproject (j2ee) REQUIRES org.apache.tools.ant.module/3 (ide) REQUIRES org.netbeans.api.debugger/1 (ide) - REQUIRES org.netbeans.api.debugger.jpda/1 (ide) + REQUIRES org.netbeans.api.debugger.jpda/2 (ide) REQUIRES org.netbeans.api.java/1 (ide) REQUIRES org.netbeans.api.web.webmodule (j2ee) REQUIRES org.netbeans.modules.ant.browsetask (ide) @@ -854,7 +856,7 @@ REQUIRES javax.jmi.reflect/1 (ide) REQUIRES org.apache.tools.ant.module/3 (ide) REQUIRES org.netbeans.api.debugger/1 (ide) - REQUIRES org.netbeans.api.debugger.jpda/1 (ide) + REQUIRES org.netbeans.api.debugger.jpda/2 (ide) REQUIRES org.netbeans.api.java/1 (ide) REQUIRES org.netbeans.api.mdr/1 (ide) REQUIRES org.netbeans.api.progress/1 (platform) @@ -970,7 +972,7 @@ REQUIRES org.openide.util (platform) MODULE org.netbeans.modules.j2ee.sun.appsrv81/1 (j2ee) REQUIRES org.netbeans.api.debugger/1 (ide) - REQUIRES org.netbeans.api.debugger.jpda/1 (ide) + REQUIRES org.netbeans.api.debugger.jpda/2 (ide) REQUIRES org.netbeans.api.xml/1 (ide) REQUIRES org.netbeans.modules.db/1 (ide) REQUIRES org.netbeans.modules.j2ee.dd/1 (j2ee) @@ -1035,7 +1037,7 @@ REQUIRES org.openide.windows (platform) MODULE org.netbeans.modules.j2eeserver/3 (j2ee) REQUIRES org.netbeans.api.debugger/1 (ide) - REQUIRES org.netbeans.api.debugger.jpda/1 (ide) + REQUIRES org.netbeans.api.debugger.jpda/2 (ide) REQUIRES org.netbeans.api.java/1 (ide) REQUIRES org.netbeans.api.xml/1 (ide) REQUIRES org.netbeans.libs.j2eeeditor/1 (j2ee) @@ -1555,7 +1557,7 @@ REQUIRES org.openide.windows (platform) MODULE org.netbeans.modules.tomcat5/1 (j2ee) REQUIRES org.netbeans.api.debugger/1 (ide) - REQUIRES org.netbeans.api.debugger.jpda/1 (ide) + REQUIRES org.netbeans.api.debugger.jpda/2 (ide) REQUIRES org.netbeans.api.java/1 (ide) REQUIRES org.netbeans.libs.xerces/1 (ide) REQUIRES org.netbeans.modules.j2ee.dd/1 (j2ee) @@ -1756,7 +1758,7 @@ REQUIRES org.openide.windows (platform) MODULE org.netbeans.modules.web.debug/1 (j2ee) REQUIRES org.netbeans.api.debugger/1 (ide) - REQUIRES org.netbeans.api.debugger.jpda/1 (ide) + REQUIRES org.netbeans.api.debugger.jpda/2 (ide) REQUIRES org.netbeans.api.web.webmodule (j2ee) REQUIRES org.netbeans.modules.j2eeserver/3 (j2ee) REQUIRES org.netbeans.modules.projectapi/1 (ide) @@ -1831,7 +1833,7 @@ REQUIRES javax.jmi.reflect/1 (ide) REQUIRES org.apache.tools.ant.module/3 (ide) REQUIRES org.netbeans.api.debugger/1 (ide) - REQUIRES org.netbeans.api.debugger.jpda/1 (ide) + REQUIRES org.netbeans.api.debugger.jpda/2 (ide) REQUIRES org.netbeans.api.java/1 (ide) REQUIRES org.netbeans.api.mdr/1 (ide) REQUIRES org.netbeans.api.web.webmodule (j2ee) Index: ide/golden/modules.txt =================================================================== RCS file: /cvs/ide/golden/modules.txt,v retrieving revision 1.28 diff -u -r1.28 modules.txt --- ide/golden/modules.txt 29 Jul 2005 08:34:10 -0000 1.28 +++ ide/golden/modules.txt 12 Aug 2005 09:01:01 -0000 @@ -3,7 +3,7 @@ MODULE javax.jmi.reflect/1 (ide) MODULE org.apache.tools.ant.module/3 (ide) MODULE org.netbeans.api.debugger/1 (ide) -MODULE org.netbeans.api.debugger.jpda/1 (ide) +MODULE org.netbeans.api.debugger.jpda/2 (ide) MODULE org.netbeans.api.java/1 (ide) MODULE org.netbeans.api.mdr/1 (ide) MODULE org.netbeans.api.progress/1 (platform) Index: ide/golden/public-packages.txt =================================================================== RCS file: /cvs/ide/golden/public-packages.txt,v retrieving revision 1.26 diff -u -r1.26 public-packages.txt --- ide/golden/public-packages.txt 29 Jul 2005 08:34:10 -0000 1.26 +++ ide/golden/public-packages.txt 12 Aug 2005 09:01:01 -0000 @@ -76,6 +76,7 @@ org.apache.xml.serialize org.netbeans.api.debugger org.netbeans.api.debugger.jpda +org.netbeans.api.debugger.jpda.event org.netbeans.api.diff org.netbeans.api.editor.completion org.netbeans.api.editor.fold Index: ide/golden/shared-packages.txt =================================================================== RCS file: /cvs/ide/golden/shared-packages.txt,v retrieving revision 1.3 diff -u -r1.3 shared-packages.txt --- ide/golden/shared-packages.txt 4 Jun 2005 05:16:17 -0000 1.3 +++ ide/golden/shared-packages.txt 12 Aug 2005 09:01:01 -0000 @@ -1,3 +1,4 @@ + com.sun.tools.j2ee.editor com.sun.tools.j2ee.editor.cookies com.sun.tools.j2ee.editor.ddtypes