Uses of Class
org.eclipse.osgi.baseadaptor.bundlefile.BundleEntry

Packages that use BundleEntry
org.eclipse.osgi.baseadaptor.bundlefile   
org.eclipse.osgi.baseadaptor.hooks   
org.eclipse.osgi.baseadaptor.loader   
 

Uses of BundleEntry in org.eclipse.osgi.baseadaptor.bundlefile
 

Subclasses of BundleEntry in org.eclipse.osgi.baseadaptor.bundlefile
 class DirZipBundleEntry
          Represents a directory entry in a ZipBundleFile.
 class FileBundleEntry
          A BundleEntry represented by a File object.
 class ZipBundleEntry
          A BundleEntry represented by a ZipEntry in a ZipFile.
 

Methods in org.eclipse.osgi.baseadaptor.bundlefile that return BundleEntry
abstract  BundleEntry BundleFile.getEntry(java.lang.String path)
          Locates a file name in this bundle and returns a BundleEntry object
 BundleEntry DirBundleFile.getEntry(java.lang.String path)
           
 BundleEntry NestedDirBundleFile.getEntry(java.lang.String path)
           
 BundleEntry ZipBundleFile.getEntry(java.lang.String path)
           
 

Uses of BundleEntry in org.eclipse.osgi.baseadaptor.hooks
 

Methods in org.eclipse.osgi.baseadaptor.hooks with parameters of type BundleEntry
 byte[] ClassLoadingHook.processClass(java.lang.String name, byte[] classbytes, ClasspathEntry classpathEntry, BundleEntry entry, ClasspathManager manager)
          Gets called by a classpath manager before defining a class.
 void ClassLoadingStatsHook.recordClassDefine(java.lang.String name, java.lang.Class clazz, byte[] classbytes, ClasspathEntry classpathEntry, BundleEntry entry, ClasspathManager manager)
          Gets called by a classpath manager after a successfully defining a class.
 

Uses of BundleEntry in org.eclipse.osgi.baseadaptor.loader
 

Methods in org.eclipse.osgi.baseadaptor.loader that return BundleEntry
 BundleEntry ClasspathManager.findLocalEntry(java.lang.String path)
          Finds a local entry by searching the ClasspathEntry objects of the classpath manager.
 

Methods in org.eclipse.osgi.baseadaptor.loader with parameters of type BundleEntry
 java.lang.Class BaseClassLoader.defineClass(java.lang.String name, byte[] classbytes, ClasspathEntry classpathEntry, BundleEntry entry)
          Defines a Class.