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

(-)a/api.debugger.jpda/apichanges.xml (+20 lines)
Lines 746-751 Link Here
746
        <issue number="171342"/>
746
        <issue number="171342"/>
747
    </change>
747
    </change>
748
748
749
    <change>
750
        <api name="JPDADebuggerAPI"/>
751
        <summary>Property for classes fixed event added.</summary>
752
        <version major="2" minor="25"/>
753
        <date day="14" month="2" year="2010"/>
754
        <author login="dprusa"/>
755
        <compatibility addition="yes" source="compatible" binary="compatible"/>
756
        <description>
757
            JPDA debugger properties have been extended by a property name for classes
758
            fixed event. This event is usually generated when the user invokes Apply Code
759
            Changes action.
760
            <p>
761
                Added field:<br/>
762
                <code>JPDADebugger.PROP_CLASSES_FIXED</code>
763
            </p>
764
        </description>
765
        <class package="org.netbeans.api.debugger.jpda" name="JPDADebugger" />
766
        <issue number="180695"/>
767
    </change>
768
749
769
750
</changes>
770
</changes>
751
771
(-)a/api.debugger.jpda/manifest.mf (-1 / +1 lines)
Lines 1-6 Link Here
1
Manifest-Version: 1.0
1
Manifest-Version: 1.0
2
OpenIDE-Module: org.netbeans.api.debugger.jpda/2
2
OpenIDE-Module: org.netbeans.api.debugger.jpda/2
3
OpenIDE-Module-Localizing-Bundle: org/netbeans/api/debugger/jpda/Bundle.properties
3
OpenIDE-Module-Localizing-Bundle: org/netbeans/api/debugger/jpda/Bundle.properties
4
OpenIDE-Module-Specification-Version: 2.24
4
OpenIDE-Module-Specification-Version: 2.25
5
OpenIDE-Module-Package-Dependencies: com.sun.jdi[VirtualMachineManager]
5
OpenIDE-Module-Package-Dependencies: com.sun.jdi[VirtualMachineManager]
6
6
(-)a/api.debugger.jpda/src/org/netbeans/api/debugger/jpda/JPDADebugger.java (+3 lines)
Lines 99-104 Link Here
99
    /** Property name constant.
99
    /** Property name constant.
100
     * @since 2.16     */
100
     * @since 2.16     */
101
    public static final String          PROP_THREAD_GROUP_ADDED = "threadGroupAdded";  // NOI18N
101
    public static final String          PROP_THREAD_GROUP_ADDED = "threadGroupAdded";  // NOI18N
102
    /** Property name constant.
103
     * @since 2.25     */
104
    public static final String          PROP_CLASSES_FIXED = "classesFixed";  // NOI18N
102
    
105
    
103
    /** Suspend property value constant. */
106
    /** Suspend property value constant. */
104
    public static final int             SUSPEND_ALL = EventRequest.SUSPEND_ALL;
107
    public static final int             SUSPEND_ALL = EventRequest.SUSPEND_ALL;

Return to bug 180695