Home
last modified time | relevance | path

Searched refs:StorageHookFactory (Results 1 – 6 of 6) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.framework/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/hookregistry/
H A DStorageHookFactory.java40 public abstract class StorageHookFactory<S, L, H extends StorageHookFactory.StorageHook<S, L>> { class
154 private final Class<? extends StorageHookFactory<S, L, ? extends StorageHook<S, L>>> factoryClass;
157 …public StorageHook(Generation generation, Class<? extends StorageHookFactory<S, L, ? extends Stora… in StorageHook()
250 public Class<? extends StorageHookFactory<S, L, ? extends StorageHook<S, L>>> getFactoryClass() { in getFactoryClass()
H A DHookRegistry.java82 private final List<StorageHookFactory<?, ?, ?>> storageHookFactories = new ArrayList<>();
83 …private final List<StorageHookFactory<?, ?, ?>> storageHookFactoriesRO = Collections.unmodifiableL…
226 public List<StorageHookFactory<?, ?, ?>> getStorageHookFactories() { in getStorageHookFactories()
264 public void addStorageHookFactory(StorageHookFactory<?, ?, ?> storageHookFactory) { in addStorageHookFactory() argument
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.framework/bundles/org.eclipse.osgi.tests/bundles_src/storage.hooks.a/org/eclipse/osgi/tests/hooks/framework/storage/a/
H A DTestHookConfigurator.java38 import org.eclipse.osgi.internal.hookregistry.StorageHookFactory;
48 …private static class TestStorageHookFactory extends StorageHookFactory<Object, Object, TestStorage…
49 private static class TestStorageHook extends StorageHookFactory.StorageHook<Object, Object> {
137 factoryClass = StorageHookFactory.class; in createStorageHook()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.framework/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/internal/signedcontent/
H A DSignedStorageHook.java18 import org.eclipse.osgi.internal.hookregistry.StorageHookFactory;
24 public class SignedStorageHook extends StorageHookFactory<List<SignerInfo>, List<SignerInfo>, Signe…
47 …static class StorageHookImpl extends StorageHookFactory.StorageHook<List<SignerInfo>, List<SignerI…
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.framework/bundles/org.eclipse.osgi/container/src/org/eclipse/osgi/storage/
H A DStorage.java76 import org.eclipse.osgi.internal.hookregistry.StorageHookFactory;
77 import org.eclipse.osgi.internal.hookregistry.StorageHookFactory.StorageHook;
570 for (StorageHookFactory<?, ?, ?> storageHook : storageHooks) { in getContentConnection()
753 …for (Iterator<StorageHookFactory<?, ?, ?>> iFactories = factories.iterator(); iFactories.hasNext()…
755StorageHookFactory<Object, Object, StorageHook<Object, Object>> next = (StorageHookFactory<Object,…
1400 for (StorageHookFactory<?, ?, ?> factory : factories) {
1514 StorageHookFactory<Object, Object, StorageHook<Object, Object>> factory = null;
1515 …for (Iterator<StorageHookFactory<?, ?, ?>> iFactories = factories.iterator(); iFactories.hasNext()…
1517StorageHookFactory<Object, Object, StorageHook<Object, Object>> next = (StorageHookFactory<Object,…
1563 …for (Iterator<StorageHookFactory<?, ?, ?>> iFactories = factories.iterator(); iFactories.hasNext()…
[all …]
H A DBundleInfo.java45 import org.eclipse.osgi.internal.hookregistry.StorageHookFactory;
46 import org.eclipse.osgi.internal.hookregistry.StorageHookFactory.StorageHook;
269 …public <S, L, H extends StorageHook<S, L>> H getStorageHook(Class<? extends StorageHookFactory<S, … in getStorageHook()