Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ public IPreferenceStore getPreferenceStore() {
*
* @return IWorkbench the workbench for this plug-in
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-03")
public IWorkbench getWorkbench() {
return PlatformUI.getWorkbench();
}
Expand Down Expand Up @@ -297,7 +297,7 @@ public IWorkbench getWorkbench() {
* @deprecated this is only called if the runtime compatibility layer is
* present. See {@link #initializeDefaultPluginPreferences}.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-03")
protected void initializeDefaultPreferences(IPreferenceStore store) {
// spec'ed to do nothing
}
Expand All @@ -322,7 +322,7 @@ protected void initializeDefaultPreferences(IPreferenceStore store) {
* @see #initializeDefaultPreferences
* @since 2.0
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-03")
@Override
protected void initializeDefaultPluginPreferences() {
// N.B. by the time this method is called, the plug-in has a
Expand Down Expand Up @@ -372,7 +372,7 @@ protected void initializeImageRegistry(ImageRegistry reg) {
* @deprecated
* @see PlatformUI#getDialogSettingsProvider(Bundle)
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-03")
protected void loadDialogSettings() {
PlatformUI.getDialogSettingsProvider(getBundle()).loadDialogSettings();
}
Expand All @@ -393,7 +393,7 @@ protected void loadDialogSettings() {
* being initialized. The plug-ins preferences are loaded from the
* file regardless of what this method does.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-03")
protected void loadPreferenceStore() {
// do nothing by default
}
Expand Down Expand Up @@ -424,7 +424,7 @@ protected void refreshPluginActions() {
* @deprecated
* @see IDialogSettingsProvider#saveDialogSettings()
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-03")
protected void saveDialogSettings() {
PlatformUI.getDialogSettingsProvider(getBundle()).saveDialogSettings();
}
Expand All @@ -440,7 +440,7 @@ protected void saveDialogSettings() {
* <code>savePluginPreferences</code>, and exists only for backwards
* compatibility.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-03")
protected void savePreferenceStore() {
savePluginPreferences();
}
Expand All @@ -451,7 +451,7 @@ protected void savePreferenceStore() {
*
* It is not called anymore as Eclipse 4.6 removed this plug-in.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-03")
@Override
public void startup() throws CoreException {
// this method no longer does anything
Expand All @@ -477,7 +477,7 @@ public void startup() throws CoreException {
* org.eclipse.core.runtime.compatibility plug-in; in contrast, the
* <code>stop</code> method is always called.
*/
@Deprecated
@Deprecated(forRemoval = true, since = "2025-03")
@Override
public void shutdown() throws CoreException {
// this method no longer does anything interesting
Expand Down
Loading