@@ -269,7 +269,7 @@ public IPreferenceStore getPreferenceStore() {
269
269
*
270
270
* @return IWorkbench the workbench for this plug-in
271
271
*/
272
- @ Deprecated
272
+ @ Deprecated ( forRemoval = true , since = "2025-03" )
273
273
public IWorkbench getWorkbench () {
274
274
return PlatformUI .getWorkbench ();
275
275
}
@@ -297,7 +297,7 @@ public IWorkbench getWorkbench() {
297
297
* @deprecated this is only called if the runtime compatibility layer is
298
298
* present. See {@link #initializeDefaultPluginPreferences}.
299
299
*/
300
- @ Deprecated
300
+ @ Deprecated ( forRemoval = true , since = "2025-03" )
301
301
protected void initializeDefaultPreferences (IPreferenceStore store ) {
302
302
// spec'ed to do nothing
303
303
}
@@ -322,7 +322,7 @@ protected void initializeDefaultPreferences(IPreferenceStore store) {
322
322
* @see #initializeDefaultPreferences
323
323
* @since 2.0
324
324
*/
325
- @ Deprecated
325
+ @ Deprecated ( forRemoval = true , since = "2025-03" )
326
326
@ Override
327
327
protected void initializeDefaultPluginPreferences () {
328
328
// N.B. by the time this method is called, the plug-in has a
@@ -372,7 +372,7 @@ protected void initializeImageRegistry(ImageRegistry reg) {
372
372
* @deprecated
373
373
* @see PlatformUI#getDialogSettingsProvider(Bundle)
374
374
*/
375
- @ Deprecated
375
+ @ Deprecated ( forRemoval = true , since = "2025-03" )
376
376
protected void loadDialogSettings () {
377
377
PlatformUI .getDialogSettingsProvider (getBundle ()).loadDialogSettings ();
378
378
}
@@ -393,7 +393,7 @@ protected void loadDialogSettings() {
393
393
* being initialized. The plug-ins preferences are loaded from the
394
394
* file regardless of what this method does.
395
395
*/
396
- @ Deprecated
396
+ @ Deprecated ( forRemoval = true , since = "2025-03" )
397
397
protected void loadPreferenceStore () {
398
398
// do nothing by default
399
399
}
@@ -424,7 +424,7 @@ protected void refreshPluginActions() {
424
424
* @deprecated
425
425
* @see IDialogSettingsProvider#saveDialogSettings()
426
426
*/
427
- @ Deprecated
427
+ @ Deprecated ( forRemoval = true , since = "2025-03" )
428
428
protected void saveDialogSettings () {
429
429
PlatformUI .getDialogSettingsProvider (getBundle ()).saveDialogSettings ();
430
430
}
@@ -440,7 +440,7 @@ protected void saveDialogSettings() {
440
440
* <code>savePluginPreferences</code>, and exists only for backwards
441
441
* compatibility.
442
442
*/
443
- @ Deprecated
443
+ @ Deprecated ( forRemoval = true , since = "2025-03" )
444
444
protected void savePreferenceStore () {
445
445
savePluginPreferences ();
446
446
}
@@ -451,7 +451,7 @@ protected void savePreferenceStore() {
451
451
*
452
452
* It is not called anymore as Eclipse 4.6 removed this plug-in.
453
453
*/
454
- @ Deprecated
454
+ @ Deprecated ( forRemoval = true , since = "2025-03" )
455
455
@ Override
456
456
public void startup () throws CoreException {
457
457
// this method no longer does anything
@@ -477,7 +477,7 @@ public void startup() throws CoreException {
477
477
* org.eclipse.core.runtime.compatibility plug-in; in contrast, the
478
478
* <code>stop</code> method is always called.
479
479
*/
480
- @ Deprecated
480
+ @ Deprecated ( forRemoval = true , since = "2025-03" )
481
481
@ Override
482
482
public void shutdown () throws CoreException {
483
483
// this method no longer does anything interesting
0 commit comments