Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion bundles/org.eclipse.ui.workbench/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.ui.workbench; singleton:=true
Bundle-Version: 3.138.100.qualifier
Bundle-Version: 3.139.0.qualifier
Bundle-Activator: org.eclipse.ui.internal.WorkbenchPlugin
Bundle-ActivationPolicy: lazy
Bundle-Vendor: %providerName
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2000, 2025 IBM Corporation and others.
* Copyright (c) 2000, 2026 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand Down Expand Up @@ -71,6 +71,20 @@ public interface ISharedImages {
*/
String IMG_ELCL_COLLAPSEALL_DISABLED = "IMG_ELCL_COLLAPSEALL_DISABLED"; //$NON-NLS-1$

/**
* Identifies the expand all image in the enabled state.
*
* @since 3.139
*/
String IMG_ELCL_EXPANDALL = "IMG_ELCL_EXPANDALL"; //$NON-NLS-1$

/**
* Identifies the expand all image in the disabled state.
*
* @since 3.139
*/
String IMG_ELCL_EXPANDALL_DISABLED = "IMG_ELCL_EXPANDALL_DISABLED"; //$NON-NLS-1$

/**
* Identifies the remove image in the enabled state.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2000, 2025 IBM Corporation and others.
* Copyright (c) 2000, 2026 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand Down Expand Up @@ -244,7 +244,7 @@ public abstract class FilteredItemsSelectionDialog extends SelectionStatusDialog
* to deterministically wait for the filter/refresh pipeline to settle.
*
* @noreference This field is not intended to be referenced by clients.
* @since 3.138
* @since 3.139
Comment thread
merks marked this conversation as resolved.
*/
public static final Object JOB_FAMILY = new Object();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ private static final void declareImages() {
declareImage(ISharedImages.IMG_ELCL_SYNCED, ISharedImages.IMG_ELCL_SYNCED_DISABLED, //
PATH_ELOCALTOOL + "synced.svg", true); //$NON-NLS-1$

declareImage(ISharedImages.IMG_ELCL_COLLAPSEALL, ISharedImages.IMG_ELCL_COLLAPSEALL_DISABLED, //
PATH_ELOCALTOOL + "collapseall.svg", true); //$NON-NLS-1$
Comment thread
merks marked this conversation as resolved.
declareImage(ISharedImages.IMG_ELCL_EXPANDALL, ISharedImages.IMG_ELCL_EXPANDALL_DISABLED, //
PATH_ELOCALTOOL + "expandall.svg", true); //$NON-NLS-1$

declareImage(ISharedImages.IMG_ELCL_REMOVE, ISharedImages.IMG_ELCL_REMOVE_DISABLED, //
PATH_ELOCALTOOL + "remove.svg", true); //$NON-NLS-1$
Expand Down
Loading