aboutsummaryrefslogtreecommitdiff
path: root/extensions/grapher/src/com/google/inject/grapher/InjectorGrapher.java
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/grapher/src/com/google/inject/grapher/InjectorGrapher.java')
-rw-r--r--extensions/grapher/src/com/google/inject/grapher/InjectorGrapher.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/extensions/grapher/src/com/google/inject/grapher/InjectorGrapher.java b/extensions/grapher/src/com/google/inject/grapher/InjectorGrapher.java
index 91fd92c4..37bd6e13 100644
--- a/extensions/grapher/src/com/google/inject/grapher/InjectorGrapher.java
+++ b/extensions/grapher/src/com/google/inject/grapher/InjectorGrapher.java
@@ -30,12 +30,16 @@ import java.util.Set;
*/
public interface InjectorGrapher {
- /** Graphs the guice dependency graph for the given injector using default starting keys. */
+ /**
+ * Graphs the guice dependency graph for the given injector using default starting keys.
+ * @since 4.0
+ */
void graph(Injector injector) throws IOException;
/**
* Graphs the guice dependency graph for the given injector using the given starting keys and
* their transitive dependencies.
+ * @since 4.0
*/
void graph(Injector injector, Set<Key<?>> root) throws IOException;
}