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

(-)manifest.mf (-2 / +1 lines)
Line 5 Link Here
5
OpenIDE-Module-Specification-Version: 1.2
5
OpenIDE-Module-Specification-Version: 1.3
6
--
(-)api/doc/changes/apichanges.xml (+17 lines)
Line 81 Link Here
81
        <summary>Adding <code>createProgressComponent(AggregateProgressHandle)</code> method to <code>AggregateProgressFactory</code></summary>
82
        <version major="1" minor="3"/>
83
        <date day="11" month="10" year="2005"/>
84
        <author login="mkleint"/>
85
        <compatibility addition="yes"/>
86
        <description>
87
            <p>
88
              For aggregated progress handles the equivalent of ProgressHandleFactory.createProgressComponent() was missing.
89
              Added in this version.
90
            </p>
91
        </description>
92
        <class package="org.netbeans.api.progress.aggregate" name="AggregateProgressFactory"/>
93
        <class package="org.netbeans.api.progress.aggregate" name="AggregateProgressHandle"/>
94
        <issue number="66554"/>
95
    </change>      
96
    <change>
97
        <api name="progress_api"/>
(-)src/org/netbeans/api/progress/aggregate/AggregateProgressFactory.java (+10 lines)
Line 17 Link Here
17
import javax.swing.JComponent;
Line 68 Link Here
69
    }  
70
    
71
    /**
72
     * Get the progress bar component for use in custom dialogs, the task won't 
73
     * show in the progress bar anymore.
74
     * @return the component to use in custom UI.
75
     */
76
    public static JComponent createProgressComponent(AggregateProgressHandle handle) {
77
        return handle.extractComponent();
(-)src/org/netbeans/api/progress/aggregate/AggregateProgressHandle.java (+8 lines)
Line 20 Link Here
20
import javax.swing.JComponent;
Line 206 Link Here
207
    
208
   /**
209
     * have the component in custom location, don't include in the status bar.
210
     */
211
    JComponent extractComponent() {
212
        return ProgressHandleFactory.createProgressComponent(handle);
213
    }    

Return to bug 66554