Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/dom/TypeBindingVisitor.java')
-rw-r--r--org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/dom/TypeBindingVisitor.java30
1 files changed, 0 insertions, 30 deletions
diff --git a/org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/dom/TypeBindingVisitor.java b/org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/dom/TypeBindingVisitor.java
deleted file mode 100644
index 49729c058e..0000000000
--- a/org.eclipse.jdt.ui/core extension/org/eclipse/jdt/internal/corext/dom/TypeBindingVisitor.java
+++ /dev/null
@@ -1,30 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2014 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Dmitry Stalnov (dstalnov@fusionone.com) - contributed fix for
- * bug "inline method - doesn't handle implicit cast" (see
- * https://bugs.eclipse.org/bugs/show_bug.cgi?id=24941).
- *******************************************************************************/
-package org.eclipse.jdt.internal.corext.dom;
-
-import org.eclipse.jdt.core.dom.ITypeBinding;
-
-/**
- * Interface used in type binding visiting algorithms.
- *
- * @see Bindings#visitHierarchy(ITypeBinding, TypeBindingVisitor)
- */
-public interface TypeBindingVisitor {
-
- /**
- * @param type a type binding
- * @return <code>true</code> to continue visiting types,
- * or <code>false</code> to abort and return <code>false</code>
- */
- public boolean visit(ITypeBinding type);
-}

Back to the top