-
Notifications
You must be signed in to change notification settings - Fork 1
/
old_build_notes.html
2475 lines (2072 loc) · 93.2 KB
/
old_build_notes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Eclipse Platform Release Notes Core</title>
</head>
<body>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 3.1 RC4 (20050624)
<h2>What's new in this drop</h2>
<p><em>(Massive update in build-notes takes into account all action between 2004-06-24
and 2005-06-24)</em></p>
<h3>Summary of API and non-API changes</h3>
<ul>
<li>Summary of changes in the Runtime
<ul>
<li>Dynamic Plug-ins - We added a package with helper classes to aid clients
when making their plug-ins dynamic and dynamic aware. Check out the classes
in <code>org.eclipse.core.runtime.dynamichelpers</code>.</li>
<li>Preferences - We added filters for import/export (IPreferenceFilter)
and modify listeners to aid in plug-in preference migration. Check out
the <code>IPreferenceFilter</code> and <code>PreferenceModifyListener</code>
types for more information.</li>
<li>Jobs - Minor changes were made to the jobs API to allow rule transfer
and querying of the manager for idle jobs. See <code>JobManager#isIdle</code>
and <code>JobManager#transferRule</code>.</li>
<li> Content types - The heuristics for content type matching were changed.
For weak content matching, now general content types win over specific
ones (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=86915">bug
86915</a>). For any given level of content matching, content types matching
the full file name always appear before those matching only the extension
(<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=90218">bug 90218</a>).</li>
<li>Paths - Some of the rules for IPaths were made less strict to allow
for more allowable resource names. For instance, projects with a colon
in the name can be created on Linux. See <code>IPath#toPortableString,
Path#fromPortableString,</code> <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=24152">bug
24152</a> and <a href="http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-core-home/documents/path_changes.html">this
proposal</a> for more information.</li>
<li>IAdaptorManager computeClassOrder, computeAdaptorTypes</li>
<li>Platform Line Delimiters - In order to help make a consistent line delimiter
story across all components in the SDK, we created some Core preference
keys to help aid in storing these values. See <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=3970">bug
3970</a> for more information.</li>
<li>Message Bundles - In order to improve performance (both time and space)
of resource message bundles we implemented the basis for a new message
bundle mechanism in the OSGi layer that other plug-ins can take advantage
of. See <a href="http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-core-home/documents/3.1/message_bundles.html">this
document</a> for more details.</li>
<li>Shipping Plug-ins as JARs - We made many changes in order to allow plug-in
developers to be able to ship their plug-ins as single JAR files. This
process is described in more detail <a href="http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-core-home/documents/3.1/run_from_jars.html">here</a>.</li>
</ul>
</li>
<li>Summary of changes in the org.eclipse.core.resources plug-in
<ul>
<li><a href="http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-core-home/documents/3.1/large_scale_issues.html">Large-Scale
Development</a> - Many changes were made as part of the effort to help
users with large-scale project development. We added new API on IProject#open
to allow an existing project to be opened immediately and then its contents
will be brought into the workspace in the background via a background
refresh.</li>
<li><a href="http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-ui-home/permissions-proposal/permissions-proposal.html">Resource
Attributes</a> - Eclipse has always had problems with respect to file
permissions when importing existing files from the file system. We added
a <code>ResourceAttributes</code> class to help with this. Clients are
now able to create an attribute object, set the appropriate flags on it,
and then set it on the resource.</li>
<li><a href="http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-core-home/documents/history_store.html">Indexed
Store</a> - The indexed store that we used for the local history and persistent
properties was re-written. The old code was factored out and now lives
in the <code>org.eclipse.core.resources.compatibility</code> plug-in.</li>
</ul>
</li>
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li> <a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Resources&component=Runtime&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=2004-06-24&chfieldto=2005-06-24&chfield=bug_status&chfieldvalue=&cmdtype=doit&order=Reuse%2Bsame%2Bsort%2Bas%2Blast%2Btime&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20040624 (RC4)
<h2>What's new in this drop</h2>
<p><em>(Massive update in build-notes takes into account all action between 2004-05-20
and 2004-06-24)</em></p>
<h3>API changes</h3>
<ul>
<li>New APIs have been added to support client notification of file encoding and
content type changes. Unfortuanatly this API was added too late in the release
cycle for implementation to follow. It will be addressed soon after 3.0 ships.
For more information see
<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=59899">bug 59899</a></li>
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.</li>
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li> <a href="https://bugs.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Equinox&product=Platform&component=Core&component=General&component=OSGi&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2004-05-20&chfieldto=2004-06-24&chfieldvalue=&cmdtype=doit&namedcmd=5votes&newqueryname=&order=Reuse%2Bsame%2Bsort%2Bas%2Blast%2Btime&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20040520 (M9)
<h2>What's new in this drop</h2>
<p><em>(Massive update in build-notes takes into account all action between 2004-01-27
and 2004-05-20)</em></p>
<h3>API changes</h3>
<ul>
<li>API in the <code>org.eclipse.core.runtime.compatibility</code> plug-in has
been deprecated. See the Porting Guide for more details.</li>
<li>As per the plan item (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=37696">bug
37696</a>) the <code>org.apache.xerces</code> plug-in has been removed from
the Eclipse SDK builds. </li>
<li>A new preference mechanism has been rolled out and the old preferences have
been re-written in terms of the new APIs. See the <code>org.eclipse.core.runtime.preferences</code>
package in the <code>org.eclipse.core.runtime</code> plug-in for more details.</li>
<li>Users are now able to build working sets rather than having to build the
entire workspace. See the plan item bug report (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=50816">bug
50816</a>) for more details.</li>
<li>The <code>org.eclipse.core.resources</code> API is no longer dependant on
classes which reside in the compatibility layer. Only one method existed,
<code>IProject#getPluginWorkingLocation(IPluginDescriptor)</code> and this
has been replaced by <code>IProject#getWorkingLocation(String)</code>. See
<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=59355">bug 59355</a>
for details. Note that the implementation of the Resources plug-in still relies
on the compatibility layer and the removal of this dependancy is an issue
which will be addressed post-3.0.</li>
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.</li>
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li> <a href="https://bugs.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Equinox&product=Platform&component=Core&component=General&component=OSGi&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2004-01-27&chfieldto=2004-05-20&chfieldvalue=&cmdtype=doit&namedcmd=5votes&newqueryname=&order=Reuse%2Bsame%2Bsort%2Bas%2Blast%2Btime&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20040127
<h2>What's new in this drop</h2>
<p><em>(Massive update in build-notes takes into account all action between 2003-10-08
and 2004-01-27)</em></p>
<h3>API changes</h3>
<ul>
<li>Equinox work on new runtime has been merged into HEAD on dev.eclipse.org
and is now apart of the regular (integration, nightly and milestone) builds.
Check the Platform/Core team web site for more information as well as a porting
guide for API changes. Note: as a result of the changes, some of the Runtime
code has been refactored into a new project. (<code>org.eclipse.core.runtime.compatibility</code>)
This is covered in the on-line documentation.</li>
<li>Changes have been made to the concurrency model and Core now exposes a new
job API for clients. Details can be found on the Platform/Core team web site
and in the <code>org.eclipse.core.runtime.jobs</code> package.</li>
<li>The Auto-Refresh Plug-in (which was originally contributed to Core by Jed
as a separate plug-in) has both been integrated into Core as well as been
converted to use the new Jobs APIs. The <code>ResourcesPlugin.PREFS_AUTO_REFRESH</code>
preference is exposed as a Work-in-progress preference in the Workbench preferences.</li>
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.</li>
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li> <a href="https://bugs.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Equinox&product=Platform&component=Core&component=Dynamic%2BPlugins&component=General&component=OSGi&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2003-10-08&chfieldto=2004-01-27&chfieldvalue=&cmdtype=doit&namedcmd=core-3.0&newqueryname=&order=Reuse%2Bsame%2Bsort%2Bas%2Blast%2Btime&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20031008 (M4)
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li>Released early versions of new core runtime API (in the
org.eclipse.core.runtime and org.eclipse.core.runtime.registry packages) for
supporting dynamically installing plug-ins (without requiring restart), and
registering listeners for changes in the plug-in registry. See
<a href="http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-core-home/plan_dynamic_plugins.html">
plan item page</a> for more info on this.
</li>
<li>
Support was added for progress monitors that provide feedback when the current
thread is blocked due to ongoing background activity. See the new type
IProgressMonitorWithBlocking for more details.
</li>
<li>
A new preference was added to the runtime plugin for specifying a performance
setting (Platform.PREF_PLATFORM_PERFORMANCE). Users set the value of this preference
depending on the speed of their computer. Any component can use this setting to
determine if CPU-intensive features should be enabled. The platform job scheduler
will use this value to decide how much concurrent background activity it will allow.
This API is experimental and still under development.
</li>
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.</li>
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li> <a href="https://bugs.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=%0F%22uct=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2003-09-22&chfieldto=2003-10-08&chfieldvalue=&cmdtype=doit&namedcmd=core-3.0%60%22wqueryname=(%22der=Reuse%2Bsame%2Bsort%2Bas%2Blast%2Btime&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20030923
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li>Autobuild in the background!! When automatic build is enabled, it now runs
in a background thread. This makes all workspace changing API more responsive.
See plan item bug report
<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=36957">36957</a> for more details.
</li>
<li>New constant ResourcesPlugin.FAMILY_AUTO_BUILD for manipulating the
background autobuild job. This allows clients to query or join a background autobuild
in progress.
</li>
<li>New API on IResource to get or set the local file system time stamp. This
uses an in-memory cache to greatly improve the performance of retrieving or
changing the local time stamp. New methods are IResource.getLocalTimeStamp
and IResource.setLocalTimeStamp. See API javadoc for more details.
</li>
<li>
There have been various tweaks to the IJobManager API that caused breaking changes.
Job.run has been made protected to prevent clients from calling it directly, and
IJobManager.endRule now requires the scheduling rule to be specified as a parameter.
</ul>
<h3>Other highlights</h3>
<ul>
<li>Several deadlock problems were fixed for this build. Please continue to enter
bug reports against platform core if you see new deadlocks.</li>
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li> <a href="https://bugs.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2003-08-11&chfieldto=2003-09-22&chfieldvalue=&cmdtype=doit&namedcmd=core-3.0&newqueryname=&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20030811
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li>Added experimental API to IJobManager for applying a scheduling rule to a particular
thread. This is a breaking change because it required adding a method to ISchedulingRule.
</li>
<li>Made API changes in resources plug-in to support scheduling rules. IResource
now extends ISchedulingRule, so any resource handle can be used as a job scheduling
rule. New API on IWorkspace allows running an IWorkspaceRunnable with a given
scheduling rule applied. This will block until it is safe to run, and then batch the
changes as in a normal IWorkspaceRunnable.
</li>
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li> <a href="https://bugs.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2003-07-15&chfieldto=2003-08-11&chfieldvalue=&cmdtype=doit&namedcmd=core-3.0&newqueryname=&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20030715
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li>Added new core runtime API package for scheduling and running background
activity. This package is the core component for the responsiveness plan item
outlined in bug 36957. See the
<a href="http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-core-home/plan_concurrency.html">
plan item home page</a> for more details. See also the API javadoc for the new
org.eclipse.core.runtime.jobs package.
</li>
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li> <a href="https://bugs.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2003-06-03&chfieldto=2003-07-15&chfieldvalue=&cmdtype=doit&namedcmd=core-3.0&newqueryname=&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20030603
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li>None.</li>
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li> <a href="https://bugs.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2003-03-27&chfieldto=2003-06-03&chfieldvalue=&cmdtype=doit&order=Reuse%2Bsame%2Bsort%2Bas%2Blast%2Btime&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20030327
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li>None.</li>
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li> <a href="http://bugs.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2003-03-19&chfieldto=2003-03-27&chfieldvalue=&cmdtype=doit&namedcmd=core-2.1&newqueryname=&order=Reuse%2Bsame%2Bsort%2Bas%2Blast%2Btime&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20030319
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li>None.</li>
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li> <a href="http://dev.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2003/03/07&chfieldto=2003/03/19&chfieldvalue=&cmdtype=doit&order=Reuse%2Bsame%2Bsort%2Bas%2Blast%2Btime&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20030306
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li>None.</li>
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li> <a href="http://dev.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2003-03-03&chfieldto=2003-03-07&chfieldvalue=&cmdtype=doit&order=Reuse%2Bsame%2Bsort%2Bas%2Blast%2Btime&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20030304
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li>None.</li>
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li> <a href="http://dev.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2003-02-21&chfieldto=2003-03-03&chfieldvalue=&cmdtype=doit&namedcmd=core-all&newqueryname=&order=Reuse%2Bsame%2Bsort%2Bas%2Blast%2Btime&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20030221
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li>None.</li>
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li> <a href="http://dev.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2003-02-18&chfieldto=2003-02-21&chfieldvalue=&cmdtype=doit&namedcmd=core-all&newqueryname=&order=Reuse%2Bsame%2Bsort%2Bas%2Blast%2Btime&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20030217
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li>None.</li>
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li> <a href="http://dev.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2003-02-13&chfieldto=2003-02-17&chfieldvalue=&cmdtype=doit&namedcmd=core-all&newqueryname=&order=Reuse%2Bsame%2Bsort%2Bas%2Blast%2Btime&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20030213
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li>None.</li>
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li> <a href="http://dev.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2003-02-06&chfieldto=2003-02-13&chfieldvalue=&cmdtype=doit&namedcmd=core-all&newqueryname=&order=Reuse%2Bsame%2Bsort%2Bas%2Blast%2Btime&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20030206
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li>Added a new preference to the <tt>org.eclipse.core.resources</tt> plug-in which allows
an application to veto the usage of linked resources for the whole workspace.
See <tt>ResourcesPlugin.PREF_DISABLE_LINKING</tt>.</li>
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li> <a href="http://dev.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2003-02-04&chfieldto=2003-02-06&chfieldvalue=&cmdtype=doit&order=Reuse%2Bsame%2Bsort%2Bas%2Blast%2Btime&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20030205
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li><tt>BootLoader.getNL()</tt> was spec'd to return a String or null but has been changed
so the return value will never be null.</li>
<li>Added <tt>IncrementalProjectBuilder.needRebuild()</tt> and <tt>IncrementalProjectBuilder.hasBeenBuilt(IProject)</tt>
to help acommodate recent changes with building projects with cyclic dependancies.</li>
<li>Added <tt>IResourceProxy.getSessionProperty(QualifiedName)</tt> so users don't have
to request the underlying resource from the proxy in order to get access to
a particular session property.</li>
<li>Added <tt>IWorkspace.isTreeLocked()</tt> so clients can determine whether or not
the workspace tree is locked for changes.</li>
<li>Added API to <tt>IWorkspaceDescription</tt> for setting/getting the values to use
for the number of iterations for building projects with cyclic dependancies.
Also added a preference constant to <tt>ResourcesPlugin</tt> to aid with this.</li>
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li> <a href="http://dev.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2003-01-28&chfieldto=2003-02-04&chfieldvalue=&cmdtype=doit&order=Reuse%2Bsame%2Bsort%2Bas%2Blast%2Btime&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20030128
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li>Added <tt>IMarker.TRANSIENT</tt> attribute key to be used to over-ride the <tt>persistent</tt>
element declaration for a marker type in the plugin.xml.</li>
<li>Added <tt>IMarker.USER_EDITABLE</tt> attribute key to be used as a hint to the UI as whether or
not to make the task list item editable by the user.</li>
<li>Added <tt>IResourceStatus.WORKSPACE_LOCKED</tt> to be used in a <tt>CoreException</tt> when
a user tries to perform an operation on the workspace when the tree is locked.</li>
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li> <a href="http://dev.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2003-01-21&chfieldto=2003-01-28&chfieldvalue=&cmdtype=doit&order=Reuse%2Bsame%2Bsort%2Bas%2Blast%2Btime&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20030121
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li><font face="Courier New, Courier, mono">IResourceStatus.VARIABLE_NOT_DEFINED_WARNING</font>
indicating that a workspace variable unexpectedly does not exist.</li>
<li>Updated spec of <font face="Courier New, Courier, mono">IResource.copy </font>and
<font face="Courier New, Courier, mono">IResource.move </font>with respect
to copy/move between resources in the same hierarchy.</li>
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li> <a href="http://dev.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2003-01-13&chfieldto=2003-01-21&chfieldvalue=&cmdtype=doit&order=Reuse%2Bsame%2Bsort%2Bas%2Blast%2Btime&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20030113
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li>New API for more efficient visiting of resource trees. This new visitor mechanism allows clients
to traverse resource trees very quickly, by avoiding the creation of unnecessary objects during the
traversal. See the new types <code>org.eclipse.core.resources.IResourceProxyVisitor</code> and
<code>org.eclipse.core.resources.IResourceProxy</code>, and the corresponding new accept methods
on <code>org.eclipse.core.resources.IResource</code>.</li>
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li>
<a href="http://dev.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2002-12-10&chfieldto=2002-12-17&chfieldvalue=&cmdtype=doit&namedcmd=core-later&newqueryname=&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20021216
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li>None.
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li>
<a href="http://dev.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2002-12-10&chfieldto=2002-12-17&chfieldvalue=&cmdtype=doit&namedcmd=core-later&newqueryname=&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20021210
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li>ILibrary.getPackagePrefixes was added to take advantage of class loader
enhancements via mark-up in the plug-in manifest files.
<li>The spec for copying and moving resources was changed with respect to local
history. Local history is now moved along with a file to the destination.
For more details see IResource.copy and IResource.move.
<li>The String keys for the Core Resources preference values were added to the
ResourcesPlugin class.
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li>
<a href="http://dev.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2002-12-03&chfieldto=2002-12-10&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20021203
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li>IResource.getLocation now specifies behaviour for linked resources. Note that there are now more cases where it may return null.
<li>IWorkspace.validateLinkLocation now tests for: whether the resource's parent is a project, its team provider vetos
link creation, and its natures veto link creation.
<li>New API was created for IPathVariableManager.validateValue so the user is able to pre-validate link values before link creation.
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li>
<a href="http://dev.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2002-11-26&chfieldto=2002-12-03&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20021126
<h2>What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li>Last build a new constant (IResource.DEEP) was created for dealing with copying and moving linked resources. After careful
consideration this was changed to have the opposite logic (IResource.SHALLOW) and the default behavior for copy and move
is to do a DEEP action. See <a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=26933">bug 26933</a> for more information.
<li>IResource.getRawLocation() was created to get the unresolved workspace path of a resource. (workspace path without
any path variables resolved) See <a href="http://dev.eclipse.org/bugs/show_bug.cgi?id=26013">bug 26013</a> for more details.
</ul>
<h3>Other highlights</h3>
<ul>
<li>None.
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li>
<a href="http://dev.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2002-11-18&chfieldto=2002-11-26&chfieldvalue=&cmdtype=doit&namedcmd=core-later&newqueryname=&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr>
<h1>Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20021118
<h2>What's new in this drop</h2>
Since we've been neglecting to update our build notes for the past little while,
this file contains a multitude new APIs and functionality that we have
added to the Platform/Core component and is not necessarily restricted to those
changes between the 2002-11-15 and 2002-11-19 builds.
<h3>API changes</h3>
<ul>
<li>In order to help with sorting markers by their creation time, we added a timestamp to markers. See:
IMarker.getCreationTime() for more details.
<li>Linked Resources - New API has been added to support the creation and manipulation of linked resources. Full
details can be found in the proposals on the
<a href="http://www.eclipse.org/eclipse/development/challenges_2_1.html">Top Ten Issues</a>
page on <a href="http://dev.eclipse.org">dev.eclipse.org</a>.
<li>Path Variables - We added support for workspace path variables. These can be used in conjunction with linked resources
(described above). See the following classes/methods for more information: IWorkspace.getPathVariableManager,
IPathVariableManager, IPathVariableChangeListener, IPathVariableChangeEvent.
<li>Build Order Computation - The algorithm to calculate the default project build order in the workspace has changed.
The new API for this method is: IWorkspace.computeProjectOrder. The old method (IWorkspace.computePrerequisiteOrder)
has been deprecated.
<li>We added basic line information to plug-in model objects. This is set by the parser when they are read
from the plugin.xml file. See PluginModelObject.getStartLine() for more details.
</ul>
<h3>Other highlights</h3>
<ul>
<li>Classloader Properties - We added some classloader performance enhancement. They are described in
<a href="http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/platform-core-home/docs/classloader-properties/classloader_properties.html">this</a> document.
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li>
<a href="http://dev.eclipse.org/bugs/buglist.cgi?short_desc_type=allwordssubstr&short_desc=&product=Platform&component=Core&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&keywords_type=anywords&keywords=&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&emailassigned_to1=1&emailtype1=substring&email1=&emailreporter2=1&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&changedin=&chfield=bug_status&chfieldfrom=2002-06-27&chfieldto=2002-11-18&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<h1>
<hr WIDTH="100%">Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20020627
<h2>
What's new in this drop</h2>
<h3>API changes</h3>
<ul>None.
</ul>
<h3>
Other highlights</h3>
<ul>
<li>None.</li>
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li>
<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfield=bug_status&chfieldfrom=2002-06-18&chfieldto=2002-06-27&chfieldvalue=&product=Platform&version=2.0&component=Core&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&order=Bug+Number">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<h1>
<hr WIDTH="100%">Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20020618
<h2>
What's new in this drop</h2>
<h3>API changes</h3>
<ul>None.
</ul>
<h3>
Other highlights</h3>
<ul>
<li>None.</li>
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li>
<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfield=bug_status&chfieldfrom=2002-06-12&chfieldto=2002-06-18&chfieldvalue=&product=Platform&version=2.0&component=Core&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=ant&newqueryname=&order=Bug+Number">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<h1>
<hr WIDTH="100%">Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20020612
<h2>
What's new in this drop</h2>
<h3>API changes</h3>
<ul>None.
</ul>
<h3>
Other highlights</h3>
<ul>
<li>None.</li>
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li>
<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfield=bug_status&chfieldfrom=2002-06-07&chfieldto=2002-06-12&chfieldvalue=&product=Platform&version=2.0&component=Core&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=ant&newqueryname=&order=Bug+Number">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<h1>
<hr WIDTH="100%">Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20020607
<h2>
What's new in this drop</h2>
<h3>API changes</h3>
<ul>None.
</ul>
<h3>
Other highlights</h3>
<ul>
<li>None.</li>
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li>
<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfield=bug_status&chfieldfrom=2002-06-01&chfieldto=2002-06-07&chfieldvalue=&product=Platform&version=2.0&component=Core&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=ant&newqueryname=&order=Bug+Number">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<h1>
<hr WIDTH="100%">Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20020601
<h2>
What's new in this drop</h2>
<h3>API changes</h3>
<ul>
<li>Added support to get the file encoding for IFiles. See IFile.getEncoding for more details.</li>
<li>Added a validation method for creating plug-in version identifiers. See PluginVersionIdentifier.validateVersion for more details.</li>
</ul>
<h3>
Other highlights</h3>
<ul>
<li>None.</li>
</ul>
<h3>Resolved Bugs</h3>
<ul>
<li>
<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfield=bug_status&chfieldfrom=2002-05-31&chfieldto=2002-06-01&chfieldvalue=&product=Platform&version=2.0&component=Core&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=ant&newqueryname=&order=Bug+Number">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<h1>
<hr WIDTH="100%">Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20020531
<h2>
What's new in this drop</h2>
<h3>
API changes</h3>
<ul>
<li>Added API on org.eclipse.core.resources.IWorkspaceDescription to get automatic snapshot
interval.</li>
</ul>
<h3>
Other highlights</h3>
<ul>
<li>None.</li>
</ul>
<h3>
Resolved Bugs</h3>
<ul>
<li>
<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfield=bug_status&chfieldfrom=2002-05-30&chfieldto=2002-05-31&chfieldvalue=&product=Platform&version=2.0&component=Core&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&order=Bug+Number">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<hr WIDTH="100%">
<h1>
<hr WIDTH="100%">Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20020530
<h2>
What's new in this drop</h2>
<h3>
API changes</h3>
<ul>
<li>Added API on org.eclipse.core.runtime.Preferences for importing/exporting user preferences to a file.
See org.eclipse.core.runtime.Preferences for more information.</li>
</ul>
<h3>
Other highlights</h3>
<ul>
<li>None.</li>
</ul>
<h3>
Resolved Bugs</h3>
<ul>
<li>
<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfield=bug_status&chfieldfrom=2002-05-29&chfieldto=2002-05-30&chfieldvalue=&product=Platform&version=2.0&component=Core&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=ant&newqueryname=&order=Bug+Number">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<h1>
<hr WIDTH="100%">Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20020529
<h2>
What's new in this drop</h2>
<h3>
API changes</h3>
<ul>
<li>None.</li>
</ul>
<h3>
Other highlights</h3>
<ul>
<li>None.</li>
</ul>
<h3>
Resolved Bugs</h3>
<ul>
<li>
<a href="http://dev.eclipse.org/bugs/buglist.cgi?bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED&email1=&emailtype1=substring&emailassigned_to1=1&email2=&emailtype2=substring&emailreporter2=1&bugidtype=include&bug_id=&changedin=&votes=&chfield=bug_status&chfieldfrom=2002-05-28&chfieldto=2002-05-29&chfieldvalue=&product=Platform&version=2.0&component=Core&short_desc=&short_desc_type=allwordssubstr&long_desc=&long_desc_type=allwordssubstr&keywords=&keywords_type=anywords&field0-0-0=noop&type0-0-0=noop&value0-0-0=&cmdtype=doit&namedcmd=ant&newqueryname=&order=Bug+Number">Click
here</a> to see PRs which have been marked as RESOLVED, VERIFIED or CLOSED
since the last integration build.</li>
</ul>
<h1>
<hr WIDTH="100%">Eclipse Platform Build Notes<br>
Core</h1>
Eclipse SDK Build 20020528
<h2>
What's new in this drop</h2>