langtools/src/share/classes/com/sun/tools/classfile/Dependency.java

Print this page

        

@@ -69,11 +69,23 @@
          * Get the name of the class containing the location.
          * This name will be used to locate the class file for transitive
          * 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();
     }
 
 
     /**
      * Get the location that has the dependency.