Searched refs:Dependency (Results 1 - 3 of 3) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DDependency.java30 * A directed relationship between two {@link Dependency.Location Location}s.
31 * Subtypes of {@code Dependency} may provide additional detail about the dependency.
33 * @see Dependency.Finder
34 * @see Dependency.Filter
37 public interface Dependency { interface
47 boolean accepts(Dependency dependency);
59 public Iterable<? extends Dependency> findDependencies(ClassFile classfile);
H A DDependencies.java36 import com.sun.tools.classfile.Dependency.Finder;
37 import com.sun.tools.classfile.Dependency.Filter;
38 import com.sun.tools.classfile.Dependency.Location;
50 * A framework for determining {@link Dependency dependencies} between class files.
52 * A {@link Dependency.Finder finder} is used to identify the dependencies of
53 * individual classes. Some finders may return subtypes of {@code Dependency} to
57 * A {@link Dependency.Filter filter} may be used to restrict the set of
117 public void addDependency(Dependency d);
236 public Set<Dependency> findAllDependencies(
240 final Set<Dependency> result
[all...]
/openjdk7/langtools/test/tools/javap/classfile/deps/
H A DGetDeps.java33 import com.sun.tools.classfile.Dependency.Location;
86 SortedMap<Location,SortedSet<Dependency>> deps = r.getMap();
87 for (Map.Entry<Location, SortedSet<Dependency>> e: deps.entrySet()) {
89 for (Dependency dep: e.getValue()) {
173 public void addDependency(Dependency d) {
175 SortedSet<Dependency> odeps = map.get(o);
177 Comparator<Dependency> c = (reverse ? originComparator : targetComparator);
178 map.put(o, odeps = new TreeSet<Dependency>(c));
183 public SortedMap<Location, SortedSet<Dependency>> getMap() {
187 private Comparator<Dependency> originComparato
[all...]

Completed in 31 milliseconds