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 210673
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="ContextRemove">
53
        <api name="refactoring"/>
54
        <summary>Added method to remove value from Context.</summary>
55
        <version major="1" minor="24"/>
56
        <date day="11" month="4" year="2012"/>
57
        <author login="ralphbenjamin"/>
58
        <compatibility addition="yes"/>
59
        <description>
60
            <p>
61
                Added the method remove to the refactoring Context.
62
            </p>    
63
        </description>
64
        <class package="org.netbeans.modules.refactoring.api" name="Context"/>
65
        <issue number="210673"/>
66
    </change>
52
    <change id="RefactoringCommit">
67
    <change id="RefactoringCommit">
53
        <api name="refactoring"/>
68
        <api name="refactoring"/>
54
        <summary>Added RefactoringCommit and ModificationResult SPI classes.</summary>
69
        <summary>Added RefactoringCommit and ModificationResult SPI classes.</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.23.0
7
spec.version.base=1.24.0
8
test.config.stableBTD.includes=**/*Test.class
8
test.config.stableBTD.includes=**/*Test.class
(-)a/refactoring.api/src/org/netbeans/modules/refactoring/api/Context.java (-1 / +3 lines)
Lines 85-91 Link Here
85
    }
85
    }
86
    
86
    
87
    /**
87
    /**
88
     * Removes value instance from this context.
88
     * Removes instance from this context.
89
     * 
90
     * @since 1.24
89
     */
91
     */
90
    public void remove(@NonNull Class<?> clazz) {
92
    public void remove(@NonNull Class<?> clazz) {
91
        Parameters.notNull("clazz", clazz); // NOI18N
93
        Parameters.notNull("clazz", clazz); // NOI18N
(-)a/refactoring.java/nbproject/project.xml (-1 / +1 lines)
Lines 185-191 Link Here
185
                    <build-prerequisite/>
185
                    <build-prerequisite/>
186
                    <compile-dependency/>
186
                    <compile-dependency/>
187
                    <run-dependency>
187
                    <run-dependency>
188
                        <specification-version>1.22</specification-version>
188
                        <specification-version>1.24</specification-version>
189
                    </run-dependency>
189
                    </run-dependency>
190
                </dependency>
190
                </dependency>
191
                <dependency>
191
                <dependency>

Return to bug 210673