--- old/src/share/classes/com/sun/tools/classfile/Dependency.java 2012-12-04 11:52:35.000000000 -0800 +++ new/src/share/classes/com/sun/tools/classfile/Dependency.java 2012-12-04 11:52:35.000000000 -0800 @@ -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(); }