Skip to main content
summaryrefslogtreecommitdiffstats
blob: 89fdb41ff6f617d6627c434f7060e63d62624bc0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

package org.eclipse.equinox.weaving.hooks;

import org.eclipse.equinox.weaving.adaptors.IWeavingAdaptor;

public interface IAdaptorProvider {

    public IWeavingAdaptor getAdaptor(long bundleID);

    public IWeavingAdaptor getHostBundleAdaptor(long bundleID);

    public void resetAdaptor(long bundleID);

}

Back to the top