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
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2000, 2024 IBM Corporation and others.
* Copyright (c) 2000, 2025 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand All @@ -18,6 +18,7 @@
import org.eclipse.swt.graphics.Device;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.ImageData;
import org.eclipse.swt.graphics.ImageDataProvider;
import org.eclipse.ui.internal.WorkbenchPlugin;

/**
Expand Down Expand Up @@ -772,15 +773,15 @@ public interface ISharedImages {
/**
* Identifies the lef arrow cursor. For cursor construction see:
*
* @see Cursor#Cursor(Device, ImageData, ImageData, int, int)
* @see Cursor#Cursor(Device, ImageDataProvider, int, int)
* @since 3.133
*/
String IMG_OBJS_DND_LEFT = "IMG_OBJS_DND_LEFT"; //$NON-NLS-1$

/**
* Identifies the right arrow cursor. For cursor construction see:
*
* @see Cursor#Cursor(Device, ImageData, ImageData, int, int)
* @see Cursor#Cursor(Device, ImageDataProvider, int, int)
* @since 3.133
*/
String IMG_OBJS_DND_RIGHT = "IMG_OBJS_DND_RIGHT"; //$NON-NLS-1$
Expand All @@ -804,7 +805,7 @@ public interface ISharedImages {
/**
* Identifies the 'no drop' arrow cursor. For cursor construction see:
*
* @see Cursor#Cursor(Device, ImageData, ImageData, int, int)
* @see Cursor#Cursor(Device, ImageDataProvider, int, int)
* @since 3.133
*/
String IMG_OBJS_DND_INVALID = "IMG_OBJS_DND_INVALID"; //$NON-NLS-1$
Expand Down
Loading