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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2011, 2025 Google, Inc. and others.
* Copyright (c) 2011, 2026 Google, Inc. and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand Down Expand Up @@ -150,7 +150,8 @@ public void setCursor(Cursor cursor) {
*/
@Override
public EditPart findObjectAtExcluding(Point location,
final Collection<IFigure> exclude,
// TODO Draw2D - Typify once lower bound is 3.22
@SuppressWarnings("rawtypes") final Collection exclude,
final Conditional conditional) {
EditPart editPart = findObjectAtExcluding(location, exclude, conditional, MENU_PRIMARY_LAYER);
if (editPart == null) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2011, 2025 Google, Inc. and others.
* Copyright (c) 2011, 2026 Google, Inc. and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand All @@ -16,7 +16,6 @@
import org.eclipse.wb.internal.gef.core.AbstractEditPartViewer;
import org.eclipse.wb.internal.gef.core.EditDomain;

import org.eclipse.draw2d.IFigure;
import org.eclipse.draw2d.geometry.Point;
import org.eclipse.gef.EditPart;
import org.eclipse.jface.viewers.ISelectionChangedListener;
Expand Down Expand Up @@ -190,7 +189,8 @@ public void setSelectionToTreeWidget() {
*/
@Override
public EditPart findObjectAtExcluding(Point location,
Collection<IFigure> exclude,
// TODO Draw2D - Typify once lower bound is 3.22
@SuppressWarnings("rawtypes") Collection exclude,
Conditional conditional) {
// simple check location
Rectangle clientArea = m_tree.getClientArea();
Expand All @@ -217,7 +217,8 @@ public EditPart findObjectAtExcluding(Point location,

@Override
public EditPart findObjectAtExcluding(Point location,
Collection<IFigure> exclude,
// TODO Draw2D - Typify once lower bound is 3.22
@SuppressWarnings("rawtypes") Collection exclude,
Conditional conditional,
String layer) {
return null;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2011, 2025 Google, Inc. and others.
* Copyright (c) 2011, 2026 Google, Inc. and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
Expand Down Expand Up @@ -55,7 +55,8 @@ public void deselectAll() {

@Override
public EditPart findObjectAtExcluding(Point location,
Collection<IFigure> exclude,
// TODO Draw2D - Typify once lower bound is 3.22
@SuppressWarnings("rawtypes") Collection exclude,
Conditional conditional) {
return null;
}
Expand Down
Loading