--- old/langtools/src/share/classes/com/sun/tools/classfile/Dependency.java Fri Dec 7 13:38:51 2012 +++ new/langtools/src/share/classes/com/sun/tools/classfile/Dependency.java Fri Dec 7 13:38:51 2012 @@ -71,7 +71,19 @@ * dependency analysis. * @return the name of the class containing the location. */ + String getName(); + + /** + * Get the fully-qualified name of the class containing the location. + * @return the fully-qualified name of the class containing the location. + */ String getClassName(); + + /** + * Get the package name of the class containing the location. + * @return the package name of the class containing the location. + */ + String getPackageName(); }