Skip to content

Support adapting the ExternalProgramImageDescriptor for its program #2991

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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 @@ -13,6 +13,7 @@
*******************************************************************************/
package org.eclipse.ui.internal.misc;

import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.swt.graphics.ImageData;
import org.eclipse.swt.program.Program;
Expand All @@ -23,7 +24,7 @@
* The external program image descriptor is the descriptor used to handle images
* that are from a Program.
*/
public class ExternalProgramImageDescriptor extends ImageDescriptor {
public class ExternalProgramImageDescriptor extends ImageDescriptor implements IAdaptable {

private Program program;

Expand Down Expand Up @@ -73,4 +74,12 @@ public int hashCode() {
}
return programName.hashCode();
}

@Override
public <T> T getAdapter(Class<T> adapter) {
if (adapter == Program.class) {
return adapter.cast(program);
}
return null;
}
}
Loading