Uses of Class
org.eclipse.osgi.baseadaptor.loader.ClasspathEntry

Packages that use ClasspathEntry
org.eclipse.osgi.baseadaptor.hooks   
org.eclipse.osgi.baseadaptor.loader   
 

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

Methods in org.eclipse.osgi.baseadaptor.hooks with parameters of type ClasspathEntry
 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 ClasspathEntry in org.eclipse.osgi.baseadaptor.loader
 

Methods in org.eclipse.osgi.baseadaptor.loader that return ClasspathEntry
 ClasspathEntry BaseClassLoader.createClassPathEntry(BundleFile bundlefile, java.security.ProtectionDomain cpDomain)
          Creates a classpath entry with the given bundle file and domain
 ClasspathEntry ClasspathManager.getClasspath(java.lang.String cp, BaseData sourcedata, java.security.ProtectionDomain sourcedomain)
          Creates a new ClasspathEntry object for the requested classpath if the source exists.
 ClasspathEntry[] FragmentClasspath.getEntries()
          Returns the fragment classpath entries for this FragmentClasspath
 ClasspathEntry ClasspathManager.getExternalClassPath(java.lang.String cp, BaseData sourcedata, java.security.ProtectionDomain sourcedomain)
          Uses the requested classpath as an absolute path to locate a source for a new ClasspathEntry.
 ClasspathEntry[] ClasspathManager.getHostClasspathEntries()
          Returns the host classpath entries for this classpath manager
 

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

Constructors in org.eclipse.osgi.baseadaptor.loader with parameters of type ClasspathEntry
FragmentClasspath(BaseData bundledata, ClasspathEntry[] entries, java.security.ProtectionDomain domain)