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

(-)spi.tasklist/apichanges.xml (+15 lines)
Lines 75-80 Link Here
75
<!-- ACTUAL CHANGES BEGIN HERE: -->
75
<!-- ACTUAL CHANGES BEGIN HERE: -->
76
76
77
<changes>
77
<changes>
78
    <change id="callback_api" >
79
        <api name="TaskListSPI"/>
80
        <summary>PushTaskScanner.Callback provides additional information.</summary>
81
        <version major="1" minor="24"/>
82
        <date day="6" month="3" year="2013"/>
83
        <author login="jpeska"/>
84
        <compatibility addition="yes"/>
85
        <description>
86
            <p>
87
                PushTaskScanner.Callback provides information whether the framework is observed and whether the current editor scope is set.
88
                Both these methods are needed for performance improvements of NB PushTaskScanners.
89
            </p>
90
        </description>
91
        <issue number="227107"/>
92
    </change>
78
    <change id="issue_support" >
93
    <change id="issue_support" >
79
        <api name="TaskListSPI"/>
94
        <api name="TaskListSPI"/>
80
        <summary>Task List implementation uses Indexing API to cache scanned tasks.</summary>
95
        <summary>Task List implementation uses Indexing API to cache scanned tasks.</summary>
(-)spi.tasklist/nbproject/project.properties (-1 / +1 lines)
Lines 3-8 Link Here
3
javac.source=1.6
3
javac.source=1.6
4
javadoc.arch=${basedir}/arch.xml
4
javadoc.arch=${basedir}/arch.xml
5
javadoc.apichanges=${basedir}/apichanges.xml
5
javadoc.apichanges=${basedir}/apichanges.xml
6
spec.version.base=1.23.0
6
spec.version.base=1.24
7
7
8
test.config.stableBTD.includes=**/*Test.class
8
test.config.stableBTD.includes=**/*Test.class
(-)spi.tasklist/src/org/netbeans/spi/tasklist/PushTaskScanner.java (+17 lines)
Lines 168-172 Link Here
168
        public void finished() {
168
        public void finished() {
169
            tm.finished( scanner );
169
            tm.finished( scanner );
170
        }
170
        }
171
172
        /**
173
         * @returns true, if the framework is observed.
174
         * @since spi.tasklist/1.24
175
         */
176
        public boolean isObserved() {
177
            return tm.isObserved();
178
        }
179
180
        /**
181
         * @returns true, if the current editor scope is set in the framework.
182
         * Performance helper method.
183
         * @since spi.tasklist/1.24
184
         */
185
        public boolean isCurrentEditorScope() {
186
            return tm.isCurrentEditorScope();
187
        }
171
    }
188
    }
172
}  
189
}  

Return to bug 227107