diff --git a/org.eclipse.wb.core/src-draw2d/org/eclipse/wb/internal/draw2d/FigureVisitor.java b/org.eclipse.wb.core/src-draw2d/org/eclipse/wb/internal/draw2d/FigureVisitor.java deleted file mode 100644 index 3c9726beb..000000000 --- a/org.eclipse.wb.core/src-draw2d/org/eclipse/wb/internal/draw2d/FigureVisitor.java +++ /dev/null @@ -1,36 +0,0 @@ -/******************************************************************************* - * Copyright (c) 2011 Google, Inc. - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License 2.0 which is available at - * https://www.eclipse.org/legal/epl-2.0. - * - * SPDX-License-Identifier: EPL-2.0 - * - * Contributors: - * Google, Inc. - initial API and implementation - *******************************************************************************/ -package org.eclipse.wb.internal.draw2d; - -import org.eclipse.wb.draw2d.Figure; - -/** - * Visitor for visiting {@link Figure} hierarchy. - * - * @author lobas_av - * @coverage gef.draw2d - */ -public class FigureVisitor { - /** - * This method is invoked to check if given {@link Figure} and its children should be visited. - */ - public boolean visit(Figure figure) { - return true; - } - - /** - * This method is invoked when all children of given {@link Figure} were visited. - */ - public void endVisit(Figure figure) { - } -} \ No newline at end of file