]> git.uio.no Git - ifi-stolz-refaktor.git/blobdiff - case-study/jdt-before/core extension/org/eclipse/jdt/internal/corext/callhierarchy/CallHierarchyVisitor.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / jdt-before / core extension / org / eclipse / jdt / internal / corext / callhierarchy / CallHierarchyVisitor.java
diff --git a/case-study/jdt-before/core extension/org/eclipse/jdt/internal/corext/callhierarchy/CallHierarchyVisitor.java b/case-study/jdt-before/core extension/org/eclipse/jdt/internal/corext/callhierarchy/CallHierarchyVisitor.java
new file mode 100644 (file)
index 0000000..1def076
--- /dev/null
@@ -0,0 +1,24 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2008 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:
+ *   Jesper Kamstrup Linnet (eclipse@kamstrup-linnet.dk) - initial API and implementation
+ *          (report 36180: Callers/Callees view)
+ *******************************************************************************/
+package org.eclipse.jdt.internal.corext.callhierarchy;
+
+public abstract class CallHierarchyVisitor {
+    public void preVisit(MethodWrapper methodWrapper) {
+    }
+
+    public void postVisit(MethodWrapper methodWrapper) {
+    }
+
+    public boolean visit(MethodWrapper methodWrapper) {
+        return true;
+    }
+}