Skip to content

Commit

Permalink
Eclipse 2024-06 API fix
Browse files Browse the repository at this point in the history
  • Loading branch information
serge-rider committed May 3, 2024
1 parent 82f58e8 commit 4423bec
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -27,6 +27,7 @@
import org.eclipse.gef.commands.CommandStack;
import org.eclipse.gef.tools.CellEditorLocator;
import org.eclipse.gef.tools.DirectEditManager;
import org.eclipse.jface.viewers.CellEditor;
import org.eclipse.jface.viewers.ICellEditorValidator;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.VerifyEvent;
Expand Down Expand Up @@ -55,7 +56,7 @@ public class ExtendedDirectEditManager extends DirectEditManager {
* @param editorType type of editor
* @param locator the CellEditorLocator
*/
public ExtendedDirectEditManager(GraphicalEditPart source, Class<?> editorType, CellEditorLocator locator,
public ExtendedDirectEditManager(GraphicalEditPart source, Class<? extends CellEditor> editorType, CellEditorLocator locator,
IFigure figure, ICellEditorValidator validator) {
super(source, editorType, locator);
this.figure = figure;
Expand Down

0 comments on commit 4423bec

Please sign in to comment.