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

(-)a/refactoring.api/apichanges.xml (+15 lines)
Lines 49-54 Link Here
49
    <apidef name="refactoring">Refactoring API</apidef>
49
    <apidef name="refactoring">Refactoring API</apidef>
50
</apidefs>
50
</apidefs>
51
<changes>
51
<changes>
52
    <change id="FinishSession">
53
        <api name="refactoring"/>
54
        <summary>Changed access level of #finish() to public.</summary>
55
        <version major="1" minor="28"/>
56
        <date day="5" month="7" year="2012"/>
57
        <author login="ralphbenjamin"/>
58
        <compatibility addition="yes"/>
59
        <description>
60
            <p>
61
                Changed access level of #finish() to public.
62
            </p>    
63
        </description>
64
        <class package="org.netbeans.modules.refactoring.api" name="RefactoringSession"/>
65
        <issue number="214926"/>
66
    </change>
52
    <change id="ContextRemove">
67
    <change id="ContextRemove">
53
        <api name="refactoring"/>
68
        <api name="refactoring"/>
54
        <summary>Added method to remove value from Context.</summary>
69
        <summary>Added method to remove value from Context.</summary>
(-)a/refactoring.api/nbproject/project.properties (-1 / +1 lines)
Lines 4-8 Link Here
4
javadoc.apichanges=${basedir}/apichanges.xml
4
javadoc.apichanges=${basedir}/apichanges.xml
5
javadoc.title=Refactoring API
5
javadoc.title=Refactoring API
6
6
7
spec.version.base=1.27.0
7
spec.version.base=1.28.0
8
test.config.stableBTD.includes=**/*Test.class
8
test.config.stableBTD.includes=**/*Test.class
(-)a/refactoring.api/src/org/netbeans/modules/refactoring/api/RefactoringSession.java (-2 / +9 lines)
Lines 240-246 Link Here
240
    }
240
    }
241
    
241
    
242
    /**
242
    /**
243
     * get elements from session
243
     * Get elements from session
244
     * @since 1.23 the returned collection is blocking until finished.
245
     * @see #finished()
244
     * @return collection of RefactoringElements
246
     * @return collection of RefactoringElements
245
     */
247
     */
246
    @NonNull
248
    @NonNull
Lines 254-260 Link Here
254
        prepareStarted.set(true);
256
        prepareStarted.set(true);
255
    }
257
    }
256
    
258
    
257
    void finished() {
259
    /**
260
     * Inform the session it, and all its plugins, are finished.
261
     * @since 1.28
262
     * @see #getRefactoringElements()
263
     */
264
    public void finished() {
258
        finished.set(true);
265
        finished.set(true);
259
    }
266
    }
260
    
267
    

Return to bug 214926