Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/index/RelationshipCallback.java |
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/index/RelationshipCallback.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/index/RelationshipCallback.java |
index eb2c1ddc3903bbe3ea5eb15c8bb80a4f8cea3835..52189535938900d54bb09359ca71012ef50b59b7 100644 |
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/index/RelationshipCallback.java |
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/index/RelationshipCallback.java |
@@ -13,7 +13,7 @@ |
*/ |
package com.google.dart.engine.index; |
-import com.google.dart.engine.element.ElementLocation; |
+import com.google.dart.engine.element.ElementProxy; |
/** |
* The interface <code>RelationshipCallback</code> defines the behavior of objects that are invoked |
@@ -26,10 +26,9 @@ public interface RelationshipCallback { |
* is-referenced-by relationship, then this method will be invoked with each location at which the |
* field is referenced. |
* |
- * @param elementLocation the {@link ElementLocation} that has the relationship with the locations |
+ * @param element the {@link ElementProxy} that has the relationship with the locations |
* @param relationship the relationship between the given element and the locations |
* @param locations the locations that were found |
*/ |
- public void hasRelationships(ElementLocation elementLocation, Relationship relationship, |
- Location[] locations); |
+ public void hasRelationships(ElementProxy element, Relationship relationship, Location[] locations); |
} |