Interface PackageDescriptor
public interface PackageDescriptor
Descriptor for a package (as indicated by a package-info.class file).
-
Method Summary
Modifier and TypeMethodDescriptiongetName()
Retrieves the package name.Retrieves access to the InputStream for thepackage-info.class
file.
-
Method Details
-
getName
String getName()Retrieves the package name.- Returns:
- The package name
-
getStreamAccess
InputStreamAccess getStreamAccess()Retrieves access to the InputStream for thepackage-info.class
file.- Returns:
- Access to the InputStream for the
package-info.class
file.
-