├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ ├── checkDependencies.yml │ ├── codeql.yml │ ├── copilot-setup-steps.yml │ ├── doCleanCode.yml │ ├── pr-checks.yml │ ├── unit-tests.yml │ ├── updateRelease.yml │ └── version-increments.yml ├── .gitignore ├── .mvn ├── extensions.xml └── maven.config ├── AGENTS.md ├── CONTRIBUTING.md ├── Jenkinsfile ├── LICENSE ├── NOTICE ├── README.md ├── bundles ├── build.properties ├── org.eclipse.equinox.app │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about_files │ │ └── LICENSE-2.0.txt │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── osgi │ │ └── org │ │ │ └── osgi │ │ │ └── service │ │ │ └── application │ │ │ ├── ApplicationAdminPermission.java │ │ │ ├── ApplicationDescriptor.java │ │ │ ├── ApplicationException.java │ │ │ ├── ApplicationHandle.java │ │ │ └── ScheduledApplication.java │ ├── plugin.properties │ ├── plugin.xml │ ├── schema │ │ ├── applications.exsd │ │ └── products.exsd │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ ├── app │ │ ├── IApplication.java │ │ ├── IApplicationContext.java │ │ └── package.html │ │ └── internal │ │ └── app │ │ ├── Activator.java │ │ ├── AnyThreadAppLauncher.java │ │ ├── AppCommands.java │ │ ├── AppPersistence.java │ │ ├── CommandLineArgs.java │ │ ├── DefaultApplicationListener.java │ │ ├── EclipseAppContainer.java │ │ ├── EclipseAppDescriptor.java │ │ ├── EclipseAppHandle.java │ │ ├── EclipseScheduledApplication.java │ │ ├── ErrorApplication.java │ │ ├── IBranding.java │ │ ├── MainApplicationLauncher.java │ │ ├── Messages.java │ │ ├── ProductExtensionBranding.java │ │ ├── ProviderExtensionBranding.java │ │ └── messages.properties ├── org.eclipse.equinox.bidi.tests │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── StructuredTextTestSuite.launch │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.xml │ ├── src │ │ └── org │ │ │ └── eclipse │ │ │ └── equinox │ │ │ └── bidi │ │ │ ├── internal │ │ │ └── tests │ │ │ │ ├── StructuredTextExtensibilityTest.java │ │ │ │ ├── StructuredTextExtensionsTest.java │ │ │ │ ├── StructuredTextFullToLeanTest.java │ │ │ │ ├── StructuredTextMath.java │ │ │ │ ├── StructuredTextMathTest.java │ │ │ │ ├── StructuredTextMethodsTest.java │ │ │ │ ├── StructuredTextProcessorTest.java │ │ │ │ ├── StructuredTextProperty.java │ │ │ │ ├── StructuredTextSomeMoreTest.java │ │ │ │ ├── StructuredTextStringRecordTest.java │ │ │ │ ├── StructuredTextSystem.java │ │ │ │ ├── StructuredTextTest.java │ │ │ │ └── StructuredTextTestBase.java │ │ │ └── tests │ │ │ └── StructuredTextTestSuite.java │ └── test.xml ├── org.eclipse.equinox.bidi │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.api.tools.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ ├── plugin.xml │ ├── schema │ │ └── bidiTypes.exsd │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── bidi │ │ ├── StructuredTextProcessor.java │ │ ├── StructuredTextTypeHandlerFactory.java │ │ ├── advanced │ │ ├── IStructuredTextExpert.java │ │ ├── StructuredTextEnvironment.java │ │ ├── StructuredTextExpertFactory.java │ │ └── package.html │ │ ├── custom │ │ ├── StructuredTextCharTypes.java │ │ ├── StructuredTextOffsets.java │ │ ├── StructuredTextTypeHandler.java │ │ └── package.html │ │ ├── internal │ │ ├── StructuredTextActivator.java │ │ ├── StructuredTextDelims.java │ │ ├── StructuredTextDelimsEsc.java │ │ ├── StructuredTextImpl.java │ │ ├── StructuredTextSingle.java │ │ ├── StructuredTextStringRecord.java │ │ ├── StructuredTextTypesCollector.java │ │ └── consumable │ │ │ ├── StructuredTextComma.java │ │ │ ├── StructuredTextEmail.java │ │ │ ├── StructuredTextFile.java │ │ │ ├── StructuredTextJava.java │ │ │ ├── StructuredTextRegex.java │ │ │ ├── StructuredTextSql.java │ │ │ ├── StructuredTextURL.java │ │ │ ├── StructuredTextUnderscore.java │ │ │ └── StructuredTextXPath.java │ │ └── package.html ├── org.eclipse.equinox.cm.test │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── forceQualifierUpdate.txt │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── cm │ │ └── test │ │ ├── AbstractCMTest.java │ │ ├── AllTests.java │ │ ├── ConfigurationAdminTest.java │ │ ├── ConfigurationDictionaryTest.java │ │ ├── ConfigurationEventAdapterTest.java │ │ ├── ConfigurationListenerTest.java │ │ ├── ConfigurationPluginTest.java │ │ ├── ManagedServiceFactoryTest.java │ │ └── ManagedServiceTest.java ├── org.eclipse.equinox.cm │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── internal │ │ └── cm │ │ ├── Activator.java │ │ ├── ConfigurationAdminFactory.java │ │ ├── ConfigurationAdminImpl.java │ │ ├── ConfigurationDictionary.java │ │ ├── ConfigurationEventAdapter.java │ │ ├── ConfigurationImpl.java │ │ ├── ConfigurationStore.java │ │ ├── EventDispatcher.java │ │ ├── LogTracker.java │ │ ├── ManagedServiceFactoryTracker.java │ │ ├── ManagedServiceTracker.java │ │ ├── PluginManager.java │ │ ├── SerializedTaskQueue.java │ │ ├── TargetMap.java │ │ └── reliablefile │ │ ├── ReliableFile.java │ │ ├── ReliableFileInputStream.java │ │ └── ReliableFileOutputStream.java ├── org.eclipse.equinox.common.tests │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── Plugin_Testing │ │ ├── adapters │ │ │ ├── dynamic │ │ │ │ ├── A │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ │ └── B │ │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ └── testAdapter_1.0.0 │ │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ │ ├── plugin.xml │ │ │ │ ├── src │ │ │ │ └── testAdapter │ │ │ │ │ └── testUnknown.java │ │ │ │ └── testAdapter │ │ │ │ └── testUnknown.class │ │ ├── fileLocator │ │ │ ├── testFileLocator.nl │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ └── nl │ │ │ │ │ └── aa │ │ │ │ │ ├── BB │ │ │ │ │ └── intro │ │ │ │ │ │ └── messages.properties │ │ │ │ │ └── intro │ │ │ │ │ └── messages.properties │ │ │ ├── testFileLocator │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ ├── intro │ │ │ │ │ └── messages.properties │ │ │ │ └── nl │ │ │ │ │ └── aa │ │ │ │ │ ├── BB │ │ │ │ │ └── intro │ │ │ │ │ │ └── messages.properties │ │ │ │ │ └── intro │ │ │ │ │ └── messages.properties │ │ │ ├── testFileLocatorGetRootFile.jar │ │ │ └── testFileLocatorGetRootFile │ │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── registry │ │ │ ├── 71826 │ │ │ │ ├── fragmentF │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── fragment.xml │ │ │ │ ├── pluginA │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ │ └── pluginB │ │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ ├── contributors │ │ │ │ ├── A │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ │ └── B │ │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── fragment.xml │ │ │ ├── elementsByContributor │ │ │ │ ├── A │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ │ ├── Afragment │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── fragment.xml │ │ │ │ └── B │ │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ ├── errorHandling │ │ │ │ ├── bad │ │ │ │ │ ├── extension │ │ │ │ │ │ ├── META-INF │ │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ │ └── plugin.xml │ │ │ │ │ └── point │ │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ │ └── plugin.xml │ │ │ │ └── good │ │ │ │ │ ├── extension │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ │ │ └── point │ │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ ├── fragmentToNonSingleton │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ └── fragment.xml │ │ │ ├── multiLang │ │ │ │ ├── bundleA │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ ├── plugin.properties │ │ │ │ │ ├── plugin.xml │ │ │ │ │ ├── plugin_de.properties │ │ │ │ │ └── plugin_fi.properties │ │ │ │ └── fragmentA │ │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ ├── fragment.properties │ │ │ │ │ ├── fragment.xml │ │ │ │ │ ├── fragment_la.properties │ │ │ │ │ └── plugin_it.properties │ │ │ ├── nonSingleton │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ └── plugin.xml │ │ │ ├── nonSingletonFragment │ │ │ │ ├── fragment │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── fragment.xml │ │ │ │ └── plugin │ │ │ │ │ └── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ ├── testA │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ └── plugin.xml │ │ │ ├── testB │ │ │ │ ├── 1 │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ │ └── 2 │ │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ ├── testC │ │ │ │ ├── 1 │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ │ └── 2 │ │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ ├── testD │ │ │ │ ├── 1 │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ │ └── 2 │ │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ ├── testE │ │ │ │ ├── 1 │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ │ └── 2 │ │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── fragment.xml │ │ │ ├── testF │ │ │ │ ├── 1 │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ │ └── 2 │ │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── fragment.xml │ │ │ ├── testG │ │ │ │ ├── 1 │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ │ └── 2 │ │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── fragment.xml │ │ │ ├── testH │ │ │ │ ├── 1 │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ │ ├── 2 │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── fragment.xml │ │ │ │ └── 3 │ │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ ├── testI │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ └── plugin.xml │ │ │ ├── testNamespace │ │ │ │ ├── 1 │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ │ └── 2 │ │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── plugin.xml │ │ │ ├── testSimple │ │ │ │ ├── CERemovalTest.xml │ │ │ │ ├── DuplicatePoints1.xml │ │ │ │ ├── DuplicatePoints2.xml │ │ │ │ ├── DuplicatePointsSame.xml │ │ │ │ ├── DynamicExtension.xml │ │ │ │ ├── ExecutableExtension.xml │ │ │ │ ├── Extension.xml │ │ │ │ ├── ExtensionPoint.xml │ │ │ │ ├── MergeDynamic.xml │ │ │ │ ├── MergeStatic.xml │ │ │ │ └── RemovalTest.xml │ │ │ ├── testStale1 │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ └── plugin.xml │ │ │ └── testStale2 │ │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ │ └── plugin.xml │ │ ├── registryEvents │ │ │ ├── bundle01 │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ └── plugin.xml │ │ │ └── bundle02 │ │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ │ └── plugin.xml │ │ ├── registryListener │ │ │ ├── bundle01 │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ └── plugin.xml │ │ │ ├── bundle02 │ │ │ │ ├── META-INF │ │ │ │ │ └── MANIFEST.MF │ │ │ │ └── plugin.xml │ │ │ └── bundleMultiple │ │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ │ └── plugin.xml │ │ └── uriutil │ │ │ └── test.jar │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.xml │ ├── resources │ │ └── org │ │ │ └── eclipse │ │ │ └── equinox │ │ │ └── common │ │ │ └── tests │ │ │ └── text │ │ │ ├── StringMatcherFindTest.txt │ │ │ ├── StringMatcherPlainTest.txt │ │ │ └── StringMatcherWildcardTest.txt │ ├── schema │ │ └── factoryLoaderTest.exsd │ ├── src │ │ └── org │ │ │ └── eclipse │ │ │ ├── core │ │ │ └── runtime │ │ │ │ └── tests │ │ │ │ └── FileLocatorTest.java │ │ │ └── equinox │ │ │ └── common │ │ │ └── tests │ │ │ ├── AllTests.java │ │ │ ├── CoreExceptionTest.java │ │ │ ├── OperationCanceledExceptionTest.java │ │ │ ├── PathTest.java │ │ │ ├── PlatformLogWriterTest.java │ │ │ ├── PluginVersionIdentifierTest.java │ │ │ ├── ProgressMonitorWrapperTest.java │ │ │ ├── QualifiedNameTest.java │ │ │ ├── RuntimeTests.java │ │ │ ├── SafeRunnerTest.java │ │ │ ├── ServiceCallerTest.java │ │ │ ├── SliceProgressMonitorTest.java │ │ │ ├── StatusTest.java │ │ │ ├── SubMonitorSmallTicksTest.java │ │ │ ├── SubMonitorTest.java │ │ │ ├── SubProgressTest.java │ │ │ ├── TestClass.java │ │ │ ├── TestProgressMonitor.java │ │ │ ├── URIUtilTest.java │ │ │ ├── URLTest.java │ │ │ ├── adaptable │ │ │ ├── AdaptableTests.java │ │ │ ├── AdapterManagerDynamicTest.java │ │ │ ├── AdaptersTest.java │ │ │ ├── IAdapterManagerServiceTest.java │ │ │ ├── IAdapterManagerTest.java │ │ │ ├── NullAdapter2Factory.java │ │ │ ├── TestAdaptable.java │ │ │ ├── TestAdaptable2.java │ │ │ ├── TestAdapter.java │ │ │ ├── TestAdapter2.java │ │ │ ├── TestAdapter2Factory.java │ │ │ ├── TestAdapterFactory.java │ │ │ ├── TestAdapterFactory2.java │ │ │ └── TestAdapterFactoryLoader.java │ │ │ ├── registry │ │ │ ├── ContributorsTest.java │ │ │ ├── ExtensionRegistryDynamicTest.java │ │ │ ├── ExtensionRegistryStaticTest.java │ │ │ ├── InputErrorTest.java │ │ │ ├── MultiLanguageTest.java │ │ │ ├── NamespaceTest.java │ │ │ ├── RegistryListenerTest.java │ │ │ ├── RegistryTests.java │ │ │ ├── StaleObjects.java │ │ │ ├── WaitingRegistryListener.java │ │ │ └── simple │ │ │ │ ├── BaseExtensionRegistryRun.java │ │ │ │ ├── DirectExtensionCreateTest.java │ │ │ │ ├── DirectExtensionCreateTwoRegistriesTest.java │ │ │ │ ├── DirectExtensionRemoveTest.java │ │ │ │ ├── DuplicatePointsTest.java │ │ │ │ ├── MergeContributionTest.java │ │ │ │ ├── SimpleRegistryTests.java │ │ │ │ ├── TokenAccessTest.java │ │ │ │ ├── XMLExecutableExtensionTest.java │ │ │ │ ├── XMLExtensionCreateEclipseTest.java │ │ │ │ ├── XMLExtensionCreateTest.java │ │ │ │ └── utils │ │ │ │ ├── ExeExtensionStrategy.java │ │ │ │ ├── ExecutableRegistryObject.java │ │ │ │ ├── HiddenLogRegistryStrategy.java │ │ │ │ └── SimpleRegistryListener.java │ │ │ └── text │ │ │ ├── AbstractStringMatcherTestBase.java │ │ │ ├── StringMatcherFindTest.java │ │ │ ├── StringMatcherOtherTest.java │ │ │ ├── StringMatcherPlainTest.java │ │ │ ├── StringMatcherPrefixTest.java │ │ │ ├── StringMatcherTests.java │ │ │ ├── StringMatcherWildcardTest.java │ │ │ └── TextMatcherTest.java │ └── test.xml ├── org.eclipse.equinox.common │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── .api_filters │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ ├── readme.txt │ └── src │ │ └── org │ │ └── eclipse │ │ ├── core │ │ ├── internal │ │ │ ├── boot │ │ │ │ ├── PlatformURLBaseConnection.java │ │ │ │ ├── PlatformURLConnection.java │ │ │ │ └── PlatformURLHandler.java │ │ │ └── runtime │ │ │ │ ├── Activator.java │ │ │ │ ├── AdapterFactoryBridge.java │ │ │ │ ├── AdapterManager.java │ │ │ │ ├── CommonMessages.java │ │ │ │ ├── DataArea.java │ │ │ │ ├── DataURLStreamHandler.java │ │ │ │ ├── DevClassPathHelper.java │ │ │ │ ├── FindSupport.java │ │ │ │ ├── IAdapterFactoryExt.java │ │ │ │ ├── IAdapterManagerProvider.java │ │ │ │ ├── IRuntimeConstants.java │ │ │ │ ├── LocalizationUtils.java │ │ │ │ ├── MetaDataKeeper.java │ │ │ │ ├── PlatformLogWriter.java │ │ │ │ ├── PlatformURLConfigConnection.java │ │ │ │ ├── PlatformURLConverter.java │ │ │ │ ├── PlatformURLFragmentConnection.java │ │ │ │ ├── PlatformURLMetaConnection.java │ │ │ │ ├── PlatformURLPluginConnection.java │ │ │ │ ├── PrintStackUtil.java │ │ │ │ ├── ReferenceHashSet.java │ │ │ │ ├── ResourceTranslator.java │ │ │ │ ├── RuntimeLog.java │ │ │ │ ├── TracingOptions.java │ │ │ │ ├── commonMessages.properties │ │ │ │ └── package.html │ │ ├── runtime │ │ │ ├── AdapterTypes.java │ │ │ ├── Adapters.java │ │ │ ├── Assert.java │ │ │ ├── AssertionFailedException.java │ │ │ ├── CoreException.java │ │ │ ├── FileLocator.java │ │ │ ├── IAdaptable.java │ │ │ ├── IAdapterFactory.java │ │ │ ├── IAdapterManager.java │ │ │ ├── IBundleGroup.java │ │ │ ├── IBundleGroupProvider.java │ │ │ ├── ICoreRunnable.java │ │ │ ├── ILogListener.java │ │ │ ├── IPath.java │ │ │ ├── IProgressMonitor.java │ │ │ ├── IProgressMonitorWithBlocking.java │ │ │ ├── ISafeRunnable.java │ │ │ ├── ISafeRunnableWithResult.java │ │ │ ├── IStatus.java │ │ │ ├── ListenerList.java │ │ │ ├── MultiStatus.java │ │ │ ├── NullProgressMonitor.java │ │ │ ├── OperationCanceledException.java │ │ │ ├── Path.java │ │ │ ├── PlatformObject.java │ │ │ ├── PluginVersionIdentifier.java │ │ │ ├── ProgressMonitorWrapper.java │ │ │ ├── QualifiedName.java │ │ │ ├── SafeRunner.java │ │ │ ├── ServiceCaller.java │ │ │ ├── SlicedProgressMonitor.java │ │ │ ├── Status.java │ │ │ ├── SubMonitor.java │ │ │ ├── SubProgressMonitor.java │ │ │ ├── URIUtil.java │ │ │ └── package.html │ │ └── text │ │ │ └── StringMatcher.java │ │ └── equinox │ │ └── events │ │ └── MemoryEventConstants.java ├── org.eclipse.equinox.compendium.tests │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.launching.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── bundles_src │ │ └── metatype │ │ │ ├── extendable.tb1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── OSGI-INF │ │ │ │ └── metatype │ │ │ │ └── metadata.xml │ │ │ ├── getMinMax.tb1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── OSGI-INF │ │ │ │ └── metatype │ │ │ │ └── metadata.xml │ │ │ ├── tb1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── OSGI-INF │ │ │ │ └── metatype │ │ │ │ └── testfile.xml │ │ │ ├── tb10 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── OSGI-INF │ │ │ │ └── metatype │ │ │ │ └── metadata.xml │ │ │ ├── tb2 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── OSGI-INF │ │ │ │ └── metatype │ │ │ │ └── metadata.xml │ │ │ ├── tb3 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── OSGI-INF │ │ │ │ └── metatype │ │ │ │ └── testfile.xml │ │ │ ├── tb4 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── OSGI-INF │ │ │ │ └── metatype │ │ │ │ └── metadata.xml │ │ │ ├── tb5 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── OSGI-INF │ │ │ │ ├── l10n │ │ │ │ │ └── bundle.properties │ │ │ │ └── metatype │ │ │ │ │ └── metadata.xml │ │ │ ├── plugin.properties │ │ │ └── properties │ │ │ │ └── x.properties │ │ │ ├── tb6 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── OSGI-INF │ │ │ │ ├── l10n │ │ │ │ │ └── bundle.properties │ │ │ │ └── metatype │ │ │ │ │ └── metadata.xml │ │ │ ├── plugin.properties │ │ │ └── properties │ │ │ │ └── x.properties │ │ │ ├── tb7 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── OSGI-INF │ │ │ │ ├── l10n │ │ │ │ │ └── bundle.properties │ │ │ │ └── metatype │ │ │ │ │ └── metadata.xml │ │ │ ├── plugin.properties │ │ │ └── properties │ │ │ │ └── x.properties │ │ │ ├── tb8 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── OSGI-INF │ │ │ │ ├── l10n │ │ │ │ ├── bundle.properties │ │ │ │ └── bundle_en.properties │ │ │ │ └── metatype │ │ │ │ ├── icons │ │ │ │ └── tn_ibm_turns_100.jpg │ │ │ │ ├── images │ │ │ │ ├── tn_ibm_turns_100-100x100.jpg │ │ │ │ ├── tn_ibm_turns_100-150x150.jpg │ │ │ │ └── tn_ibm_turns_100-200x200.jpg │ │ │ │ └── metadata.xml │ │ │ └── tb9 │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ ├── OSGI-INF │ │ │ └── metatype │ │ │ │ └── metadata.xml │ │ │ └── icons │ │ │ ├── tn_ibm_turns_100-100x100.jpg │ │ │ ├── tn_ibm_turns_100-150x150.jpg │ │ │ └── tn_ibm_turns_100-200x200.jpg │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ ├── compendium │ │ └── tests │ │ │ ├── Activator.java │ │ │ └── AllTests.java │ │ ├── coordinator │ │ └── tests │ │ │ ├── AllTests.java │ │ │ ├── BugTests.java │ │ │ ├── CoordinationMaxTimeoutTest.java │ │ │ ├── CoordinatorTest.java │ │ │ └── ReverseParticipantOrderNotifyTest.java │ │ ├── event │ │ └── tests │ │ │ ├── AllTests.java │ │ │ ├── EventAdminTest.java │ │ │ └── EventHandlerHelper.java │ │ ├── metatype │ │ └── tests │ │ │ ├── AbstractTest.java │ │ │ ├── AllTests.java │ │ │ ├── AttributeTypePasswordTest.java │ │ │ ├── Bug332161Test.java │ │ │ ├── Bug340899Test.java │ │ │ ├── Bug358969Test.java │ │ │ ├── Bug395196Test.java │ │ │ ├── BugTests.java │ │ │ ├── ExtendableTest.java │ │ │ ├── GetDefaultValueTest.java │ │ │ ├── GetMinMaxTest.java │ │ │ ├── IconTest.java │ │ │ ├── NoADTest.java │ │ │ ├── SameOcdPidFactoryPidTest.java │ │ │ └── UnresolvedBundleTest.java │ │ └── useradmin │ │ └── tests │ │ ├── AllTests.java │ │ ├── GroupTest.java │ │ ├── UserAdminEventAdapterTest.java │ │ └── UserTest.java ├── org.eclipse.equinox.concurrent │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── concurrent │ │ └── future │ │ ├── AbstractExecutor.java │ │ ├── AbstractFuture.java │ │ ├── AbstractListenableFuture.java │ │ ├── FutureProgressMonitor.java │ │ ├── IExecutor.java │ │ ├── IFuture.java │ │ ├── IListenableFuture.java │ │ ├── IProgressRunnable.java │ │ ├── IRunnableExecutor.java │ │ ├── ISafeProgressRunner.java │ │ ├── ImmediateExecutor.java │ │ ├── SingleOperationFuture.java │ │ ├── SingleOperationListenableFuture.java │ │ ├── ThreadsExecutor.java │ │ └── TimeoutException.java ├── org.eclipse.equinox.console.jaas.fragment │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ └── plugin.properties ├── org.eclipse.equinox.console.ssh.tests │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── hostkey.ser │ ├── org.eclipse.equinox.console.ssh.SshShellTests_store │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── console │ │ ├── jaas │ │ ├── RolePrincipalTests.java │ │ └── UserPrincipalTests.java │ │ ├── ssh │ │ ├── SshCommandTests.java │ │ ├── SshCommandWithConfigAdminTests.java │ │ ├── SshInputHandlerTests.java │ │ ├── SshInputScannerTests.java │ │ ├── SshShellTests.java │ │ └── UserAdminCommandTests.java │ │ └── storage │ │ ├── DigestUtilTests.java │ │ └── SecureUserStoreTests.java ├── org.eclipse.equinox.console.ssh │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── console │ │ ├── internal │ │ └── ssh │ │ │ ├── AuthorizedKeys.java │ │ │ └── AuthorizedKeysFileAuthenticator.java │ │ ├── jaas │ │ ├── RolePrincipal.java │ │ ├── SecureStorageLoginModule.java │ │ └── UserPrincipal.java │ │ ├── ssh │ │ ├── Activator.java │ │ ├── SshCommand.java │ │ ├── SshInputHandler.java │ │ ├── SshInputScanner.java │ │ ├── SshServ.java │ │ ├── SshSession.java │ │ ├── SshShell.java │ │ ├── SshShellFactory.java │ │ └── UserAdminCommand.java │ │ └── storage │ │ ├── DigestUtil.java │ │ └── SecureUserStore.java ├── org.eclipse.equinox.console.tests │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── console │ │ ├── command │ │ └── adapter │ │ │ ├── ActivatorTests.java │ │ │ └── CommandProviderAdapterTest.java │ │ ├── common │ │ ├── ConsoleInputStreamTests.java │ │ ├── ConsoleOutputStreamTests.java │ │ ├── HistoryHolderTests.java │ │ └── SimpleByteBufferTests.java │ │ ├── completion │ │ ├── CommandLineParserTests.java │ │ ├── CommandNamesCompleterTests.java │ │ ├── CompletionHandlerTests.java │ │ ├── FileNamesCompleterTests.java │ │ ├── StringsCompleterTests.java │ │ └── VariableNamesCompleterTests.java │ │ ├── supportability │ │ ├── ConsoleInputHandlerTests.java │ │ └── ConsoleInputScannerTests.java │ │ └── telnet │ │ ├── NegotiationFinishedCallbackTests.java │ │ ├── TelnetCommandTests.java │ │ ├── TelnetCommandWithConfigAdminTests.java │ │ ├── TelnetConnectionTests.java │ │ ├── TelnetDisconnectionTest.java │ │ ├── TelnetInputHandlerTests.java │ │ ├── TelnetInputScannerTests.java │ │ ├── TelnetOutputStreamTests.java │ │ └── TelnetServerTests.java ├── org.eclipse.equinox.console │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── console │ │ ├── command │ │ └── adapter │ │ │ ├── Activator.java │ │ │ ├── CommandProviderAdapter.java │ │ │ └── CustomCommandInterpreter.java │ │ ├── commands │ │ ├── CommandsTracker.java │ │ ├── ConsoleMessages.properties │ │ ├── ConsoleMsg.java │ │ ├── DisconnectCommand.java │ │ ├── EquinoxCommandProvider.java │ │ ├── EquinoxCommandsConverter.java │ │ ├── ExportStateCommand.java │ │ ├── HelpCommand.java │ │ ├── ManCommand.java │ │ ├── Util.java │ │ └── WireCommand.java │ │ ├── common │ │ ├── ConsoleInputHandler.java │ │ ├── ConsoleInputScanner.java │ │ ├── ConsoleInputStream.java │ │ ├── ConsoleOutputStream.java │ │ ├── HistoryHolder.java │ │ ├── InputHandler.java │ │ ├── KEYS.java │ │ ├── Scanner.java │ │ ├── SimpleByteBuffer.java │ │ └── terminal │ │ │ ├── ANSITerminalTypeMappings.java │ │ │ ├── SCOTerminalTypeMappings.java │ │ │ ├── TerminalTypeMappings.java │ │ │ ├── VT100TerminalTypeMappings.java │ │ │ ├── VT220TerminalTypeMappings.java │ │ │ └── VT320TerminalTypeMappings.java │ │ ├── completion │ │ ├── CommandLineParser.java │ │ ├── CommandNamesCompleter.java │ │ ├── CompletionHandler.java │ │ ├── FileNamesCompleter.java │ │ ├── StringsCompleter.java │ │ ├── VariableNamesCompleter.java │ │ └── common │ │ │ └── Completer.java │ │ └── telnet │ │ ├── Callback.java │ │ ├── NegotiationFinishedCallback.java │ │ ├── TelnetCommand.java │ │ ├── TelnetConnection.java │ │ ├── TelnetInputHandler.java │ │ ├── TelnetInputScanner.java │ │ ├── TelnetOutputStream.java │ │ └── TelnetServer.java ├── org.eclipse.equinox.coordinator │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about_files │ │ └── LICENSE-2.0.txt │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── coordinator │ │ ├── Activator.java │ │ ├── CoordinationImpl.java │ │ ├── CoordinationReferent.java │ │ ├── CoordinationTimerTask.java │ │ ├── CoordinationWeakReference.java │ │ ├── CoordinatorImpl.java │ │ ├── CoordinatorServiceFactory.java │ │ ├── LogMessages.properties │ │ ├── LogTracker.java │ │ ├── LogTrackerMsg.java │ │ ├── Messages.java │ │ └── messages.properties ├── org.eclipse.equinox.device │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── device │ │ ├── Activator.java │ │ ├── DeviceMsg.java │ │ ├── DeviceTracker.java │ │ ├── DriverLocatorTracker.java │ │ ├── DriverSelectorTracker.java │ │ ├── DriverTracker.java │ │ ├── ExternalMessages.properties │ │ ├── LogMessages.properties │ │ ├── LogTracker.java │ │ ├── LogTrackerMsg.java │ │ ├── Match.java │ │ └── SecureAction.java ├── org.eclipse.equinox.ds.tests │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.core.prefs │ │ └── org.eclipse.pde.ds.annotations.prefs │ ├── All DS Tests.launch │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── bundles_src │ │ ├── tb1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb1 │ │ │ │ ├── BindUnbindSuccessor.java │ │ │ │ ├── Immediate.java │ │ │ │ └── impl │ │ │ │ ├── Activator.java │ │ │ │ ├── AnotherComponent.java │ │ │ │ ├── BaseComp.java │ │ │ │ ├── BindUnbind.java │ │ │ │ ├── Circular1.java │ │ │ │ ├── Circular2.java │ │ │ │ ├── components.xml │ │ │ │ └── sac.properties │ │ ├── tb10 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb10 │ │ │ │ ├── CountFactory.java │ │ │ │ ├── CountHelperFactory.java │ │ │ │ └── components.xml │ │ ├── tb11 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb11 │ │ │ │ ├── ConfigurationPolicyComp.java │ │ │ │ ├── ignore100.xml │ │ │ │ ├── ignore110.xml │ │ │ │ ├── notset100.xml │ │ │ │ ├── notset110.xml │ │ │ │ ├── optional100.xml │ │ │ │ ├── optional110.xml │ │ │ │ ├── require100.xml │ │ │ │ └── require110.xml │ │ ├── tb12 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb12 │ │ │ │ ├── Bc100.java │ │ │ │ ├── Bc110.java │ │ │ │ ├── CallRegistrator.java │ │ │ │ ├── ContextExp.java │ │ │ │ ├── NoArgs100.java │ │ │ │ ├── NoArgs110.java │ │ │ │ └── components.xml │ │ ├── tb13 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb13 │ │ │ │ ├── BindUnbindRegistrator.java │ │ │ │ ├── Enabler.java │ │ │ │ └── components.xml │ │ ├── tb14 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb14 │ │ │ │ ├── ContextExp.java │ │ │ │ ├── Optional.java │ │ │ │ ├── Optional2.java │ │ │ │ └── components.xml │ │ ├── tb15 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb15 │ │ │ │ ├── Component1.java │ │ │ │ ├── Component2.java │ │ │ │ ├── Component3.java │ │ │ │ └── components.xml │ │ ├── tb16 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb16 │ │ │ │ ├── TargetProperties.java │ │ │ │ └── components.xml │ │ ├── tb17 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb17 │ │ │ │ ├── Worker.java │ │ │ │ └── components.xml │ │ ├── tb18 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb18 │ │ │ │ └── components.xml │ │ ├── tb19 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb19 │ │ │ │ └── components.xml │ │ ├── tb1a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb1a │ │ │ │ ├── Comp1.java │ │ │ │ ├── Immediate.java │ │ │ │ └── components.xml │ │ ├── tb2 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb2 │ │ │ │ └── impl │ │ │ │ ├── Blocker.java │ │ │ │ └── blockingcomp.xml │ │ ├── tb20 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb20 │ │ │ │ ├── Comp.java │ │ │ │ └── components.xml │ │ ├── tb21 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb21 │ │ │ │ ├── ModifyRegistrator.java │ │ │ │ └── components.xml │ │ ├── tb21a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb21a │ │ │ │ ├── ModifyRegistrator.java │ │ │ │ └── components.xml │ │ ├── tb22 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb22 │ │ │ │ ├── Comp.java │ │ │ │ └── components.xml │ │ ├── tb23 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb23 │ │ │ │ ├── BindRegistrator.java │ │ │ │ └── components.xml │ │ ├── tb24 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb24 │ │ │ │ ├── ConfigurationPolicyComp.java │ │ │ │ ├── ignore.xml │ │ │ │ ├── optional.xml │ │ │ │ └── require.xml │ │ ├── tb25 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb25 │ │ │ │ ├── ConfigPIDComp.java │ │ │ │ ├── PolicyOptionComp.java │ │ │ │ ├── ServicePropertiesComp.java │ │ │ │ └── components.xml │ │ ├── tb26 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── OSGI-INF │ │ │ │ └── component.xml │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb26 │ │ │ │ ├── Component.java │ │ │ │ └── impl │ │ │ │ ├── Component1.java │ │ │ │ ├── Component2.java │ │ │ │ ├── component1.xml │ │ │ │ └── component2.xml │ │ ├── tb27 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── OSGI-INF │ │ │ │ └── test1.xml │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb27 │ │ │ │ └── impl │ │ │ │ └── TestService.java │ │ ├── tb3 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb3 │ │ │ │ └── impl │ │ │ │ ├── BindBlocker.java │ │ │ │ └── component.xml │ │ ├── tb4 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb4 │ │ │ │ ├── AdvancedBounder.java │ │ │ │ ├── AnotherComponent.java │ │ │ │ ├── BoundReplacer.java │ │ │ │ ├── Component1.java │ │ │ │ ├── Component2.java │ │ │ │ ├── Component3.java │ │ │ │ ├── DynamicService.java │ │ │ │ ├── GiveMeContext.java │ │ │ │ ├── NamedService.java │ │ │ │ ├── ServiceProvider.java │ │ │ │ ├── components.xml │ │ │ │ └── impl │ │ │ │ ├── DynamicFactory.java │ │ │ │ ├── NamedFactory.java │ │ │ │ ├── namedservice.properties │ │ │ │ └── namedservice.xml │ │ ├── tb5 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb5 │ │ │ │ └── impl │ │ │ │ ├── SecurityTester.java │ │ │ │ └── component.xml │ │ ├── tb6 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb6 │ │ │ │ ├── ReferencedComp.java │ │ │ │ ├── StaticComp.java │ │ │ │ └── components.xml │ │ ├── tb7 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb7 │ │ │ │ ├── DynamicCircuit1.java │ │ │ │ ├── DynamicCircuit2.java │ │ │ │ ├── StaticCircuit1.java │ │ │ │ ├── StaticCircuit2.java │ │ │ │ ├── UnbreakableCircuit1.java │ │ │ │ ├── UnbreakableCircuit2.java │ │ │ │ └── components.xml │ │ ├── tb8 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── ds │ │ │ │ └── tests │ │ │ │ └── tb8 │ │ │ │ ├── NamespaceTester.java │ │ │ │ ├── components.xml │ │ │ │ ├── root1.xml │ │ │ │ ├── root2.xml │ │ │ │ ├── root3.xml │ │ │ │ ├── root4.xml │ │ │ │ └── root5.xml │ │ └── tb9 │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ └── eclipse │ │ │ └── equinox │ │ │ └── ds │ │ │ └── tests │ │ │ └── tb9 │ │ │ ├── Wildcard1.java │ │ │ ├── Wildcard2.java │ │ │ ├── WildcardTester.java │ │ │ ├── comp1.xml │ │ │ └── comp2.xml │ ├── forceQualifierUpdate.txt │ ├── pom.xml │ ├── src │ │ └── org │ │ │ └── eclipse │ │ │ └── equinox │ │ │ └── ds │ │ │ └── tests │ │ │ ├── AllTests.java │ │ │ ├── BundleInstaller.java │ │ │ ├── DSTestsActivator.java │ │ │ ├── LazyServiceComponentActivationDeadLockTest.java │ │ │ └── tbc │ │ │ ├── BoundCountProvider.java │ │ │ ├── BoundMainProvider.java │ │ │ ├── BoundTester.java │ │ │ ├── BundleContextProvider.java │ │ │ ├── ComponentContextProvider.java │ │ │ ├── ComponentManager.java │ │ │ ├── DSEvent.java │ │ │ ├── DSEventsProvider.java │ │ │ ├── DSTest.java │ │ │ ├── DefaultPropertiesProvider.java │ │ │ ├── DynamicWorker.java │ │ │ ├── NamespaceProvider.java │ │ │ ├── PropertiesProvider.java │ │ │ ├── StaticWorker.java │ │ │ └── TestHelper.java │ └── test.xml ├── org.eclipse.equinox.event │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.ds.annotations.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── internal │ │ └── event │ │ ├── EventAdminImpl.java │ │ ├── EventAdminMsg.java │ │ ├── EventComponent.java │ │ ├── EventHandlerTracker.java │ │ ├── EventHandlerWrapper.java │ │ ├── ExternalMessages.properties │ │ ├── LogMessages.properties │ │ ├── LogTracker.java │ │ ├── LogTrackerMsg.java │ │ └── mapper │ │ ├── BundleEventAdapter.java │ │ ├── Constants.java │ │ ├── EventAdapter.java │ │ ├── EventRedeliverer.java │ │ ├── FrameworkEventAdapter.java │ │ └── ServiceEventAdapter.java ├── org.eclipse.equinox.http.jetty │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── OSGI-INF │ │ └── metatype │ │ │ └── config.xml │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── http │ │ └── jetty │ │ ├── JettyConfigurator.java │ │ ├── JettyConstants.java │ │ ├── JettyCustomizer.java │ │ ├── internal │ │ ├── Activator.java │ │ ├── Details.java │ │ └── HttpServerManager.java │ │ └── package.html ├── org.eclipse.equinox.http.registry │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ ├── plugin.xml │ ├── schema │ │ ├── filters.exsd │ │ ├── httpcontexts.exsd │ │ ├── resources.exsd │ │ └── servlets.exsd │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── http │ │ └── registry │ │ ├── HttpContextExtensionService.java │ │ ├── internal │ │ ├── Activator.java │ │ ├── DefaultRegistryHttpContext.java │ │ ├── ExtensionPointTracker.java │ │ ├── FilterManager.java │ │ ├── HttpContextManager.java │ │ ├── HttpRegistryManager.java │ │ ├── HttpServiceTracker.java │ │ ├── ResourceManager.java │ │ └── ServletManager.java │ │ └── package.html ├── org.eclipse.equinox.http.service.api │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ └── src │ │ └── org │ │ └── osgi │ │ └── service │ │ └── http │ │ ├── HttpContext.java │ │ ├── HttpService.java │ │ ├── NamespaceException.java │ │ └── package-info.java ├── org.eclipse.equinox.http.servlet.tests │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.core.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── bundles_src │ │ ├── tb1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── OSGI-INF │ │ │ │ ├── WBFilter2_component.xml │ │ │ │ ├── WBServlet1_component.xml │ │ │ │ ├── WBServlet2_component.xml │ │ │ │ ├── testErrorPage1_component.xml │ │ │ │ ├── testErrorPage2_component.xml │ │ │ │ ├── testErrorPage3_component.xml │ │ │ │ ├── testErrorPage4_component.xml │ │ │ │ ├── testFilter10_component.xml │ │ │ │ ├── testFilter11_component.xml │ │ │ │ ├── testFilter12_component.xml │ │ │ │ ├── testFilter13_component.xml │ │ │ │ ├── testFilter14_component.xml │ │ │ │ ├── testFilter15_component.xml │ │ │ │ ├── testFilter16_component.xml │ │ │ │ ├── testFilter17_component.xml │ │ │ │ ├── testFilter18_component.xml │ │ │ │ ├── testFilter1_component.xml │ │ │ │ ├── testFilter2_component.xml │ │ │ │ ├── testFilter3_component.xml │ │ │ │ ├── testFilter4_component.xml │ │ │ │ ├── testFilter5_component.xml │ │ │ │ ├── testFilter6_component.xml │ │ │ │ ├── testFilter7_component.xml │ │ │ │ ├── testFilter8_component.xml │ │ │ │ ├── testFilter9_component.xml │ │ │ │ ├── testResource1_component.xml │ │ │ │ ├── testResource2_component.xml │ │ │ │ ├── testResource3_component.xml │ │ │ │ ├── testResource4_component.xml │ │ │ │ ├── testResource5_component.xml │ │ │ │ ├── testServlet10_component.xml │ │ │ │ ├── testServlet11_component.xml │ │ │ │ ├── testServlet1_component.xml │ │ │ │ ├── testServlet2_component.xml │ │ │ │ ├── testServlet3_component.xml │ │ │ │ ├── testServlet4_component.xml │ │ │ │ ├── testServlet5_component.xml │ │ │ │ ├── testServlet6_component.xml │ │ │ │ ├── testServlet7_component.xml │ │ │ │ ├── testServlet9_component.xml │ │ │ │ ├── testServletContextHelper10_component.xml │ │ │ │ └── testServletContext_component.xml │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── equinox │ │ │ │ └── http │ │ │ │ └── servlet │ │ │ │ └── tests │ │ │ │ ├── tb │ │ │ │ ├── AbstractTestResource.java │ │ │ │ ├── AbstractTestServlet.java │ │ │ │ ├── AbstractWhiteboardTestFilter.java │ │ │ │ └── AbstractWhiteboardTestServlet.java │ │ │ │ ├── tb1 │ │ │ │ ├── TestErrorPage1.java │ │ │ │ ├── TestErrorPage2.java │ │ │ │ ├── TestErrorPage3.java │ │ │ │ ├── TestErrorPage4.java │ │ │ │ ├── TestFilter1.java │ │ │ │ ├── TestFilter10.java │ │ │ │ ├── TestFilter11.java │ │ │ │ ├── TestFilter12.java │ │ │ │ ├── TestFilter13.java │ │ │ │ ├── TestFilter14.java │ │ │ │ ├── TestFilter15.java │ │ │ │ ├── TestFilter16.java │ │ │ │ ├── TestFilter17.java │ │ │ │ ├── TestFilter18.java │ │ │ │ ├── TestFilter2.java │ │ │ │ ├── TestFilter3.java │ │ │ │ ├── TestFilter4.java │ │ │ │ ├── TestFilter5.java │ │ │ │ ├── TestFilter6.java │ │ │ │ ├── TestFilter7.java │ │ │ │ ├── TestFilter8.java │ │ │ │ ├── TestFilter9.java │ │ │ │ ├── TestResource1.java │ │ │ │ ├── TestResource2.java │ │ │ │ ├── TestResource3.java │ │ │ │ ├── TestResource4.java │ │ │ │ ├── TestResource5.java │ │ │ │ ├── TestServlet1.java │ │ │ │ ├── TestServlet10.java │ │ │ │ ├── TestServlet11.java │ │ │ │ ├── TestServlet2.java │ │ │ │ ├── TestServlet3.java │ │ │ │ ├── TestServlet4.java │ │ │ │ ├── TestServlet5.java │ │ │ │ ├── TestServlet6.java │ │ │ │ ├── TestServlet7.java │ │ │ │ ├── TestServlet9.java │ │ │ │ ├── TestServletContext1.java │ │ │ │ ├── TestServletContextHelper1.java │ │ │ │ ├── TestServletContextHelper10.java │ │ │ │ └── resource1.txt │ │ │ │ ├── util │ │ │ │ ├── BaseFilter.java │ │ │ │ └── CharResponseWrapper.java │ │ │ │ └── wb │ │ │ │ ├── t1 │ │ │ │ └── WBServlet1.java │ │ │ │ └── t2 │ │ │ │ ├── WBFilter2.java │ │ │ │ └── WBServlet2.java │ │ └── tb2 │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ ├── OSGI-INF │ │ │ └── testResource1_component.xml │ │ │ └── org │ │ │ └── eclipse │ │ │ └── equinox │ │ │ └── http │ │ │ └── servlet │ │ │ └── tests │ │ │ └── tb2 │ │ │ ├── .gitattributes │ │ │ ├── TestResource1.java │ │ │ └── rangerequest.mp4 │ ├── forceQualifierUpdate.txt │ ├── http.context.test │ │ ├── 1 │ │ │ └── test │ │ ├── 2 │ │ │ └── test │ │ └── .gitattributes │ ├── src │ │ └── org │ │ │ └── eclipse │ │ │ └── equinox │ │ │ └── http │ │ │ └── servlet │ │ │ ├── testbase │ │ │ ├── AllTests.java │ │ │ └── BaseTest.java │ │ │ └── tests │ │ │ ├── AuthenticationTest.java │ │ │ ├── Bug500783_Test.java │ │ │ ├── Bug562440_Test.java │ │ │ ├── Bug562843_2_Test.java │ │ │ ├── Bug562843_Test.java │ │ │ ├── Bug564747_Test.java │ │ │ ├── Bug569406_Test.java │ │ │ ├── ContextHelperCustomizerTests.java │ │ │ ├── DispatchingTest.java │ │ │ ├── PreprocessorTestCase.java │ │ │ ├── ServletTest.java │ │ │ ├── TestHttpServiceAndErrorPage.java │ │ │ ├── TestHttpServiceAndNamedServlet.java │ │ │ ├── TestUpload.java │ │ │ ├── TestUploadWithParameter.java │ │ │ ├── Test_140_11_3.java │ │ │ ├── Test_140_2_17to22.java │ │ │ ├── Test_140_2_26to27.java │ │ │ ├── Test_140_2_39to41.java │ │ │ ├── Test_140_2_6_getResourcePaths.java │ │ │ ├── Test_140_4_11to13.java │ │ │ ├── Test_140_4_14to15.java │ │ │ ├── Test_140_4_16.java │ │ │ ├── Test_140_4_17to22.java │ │ │ ├── Test_140_4_1_22to23.java │ │ │ ├── Test_140_4_26to31.java │ │ │ ├── Test_140_4_42to44.java │ │ │ ├── Test_140_4_9.java │ │ │ ├── Test_140_6_1.java │ │ │ ├── Test_140_6_20to21_commonProperties.java │ │ │ ├── Test_140_7_validation.java │ │ │ ├── Test_140_9_ServletContextDTO_custom_listener.java │ │ │ ├── Test_140_9_ServletContextDTO_default_listener.java │ │ │ ├── Test_table_140_1_HTTP_WHITEBOARD_CONTEXT_NAME_bindUsingContextSelect.java │ │ │ ├── Test_table_140_1_HTTP_WHITEBOARD_CONTEXT_NAME_tieGoesToOldest.java │ │ │ ├── Test_table_140_1_HTTP_WHITEBOARD_CONTEXT_PATH_type.java │ │ │ ├── Test_table_140_4_HTTP_WHITEBOARD_SERVLET_ASYNC_SUPPORTED.java │ │ │ ├── Test_table_140_4_HTTP_WHITEBOARD_SERVLET_ASYNC_SUPPORTED_validate.java │ │ │ ├── Test_table_140_4_HTTP_WHITEBOARD_SERVLET_ERROR_PAGE_4xx.java │ │ │ ├── Test_table_140_4_HTTP_WHITEBOARD_SERVLET_ERROR_PAGE_exception.java │ │ │ ├── Test_table_140_5_HTTP_WHITEBOARD_FILTER_DISPATCHER_error.java │ │ │ ├── Test_table_140_5_HTTP_WHITEBOARD_FILTER_DISPATCHER_request.java │ │ │ ├── Test_table_140_5_HTTP_WHITEBOARD_FILTER_PATTERN.java │ │ │ ├── Test_table_140_5_HTTP_WHITEBOARD_FILTER_REGEX.java │ │ │ ├── Test_table_140_6_HTTP_WHITEBOARD_RESOURCE_validation.java │ │ │ ├── blue.png │ │ │ ├── bundle │ │ │ ├── BundleAdvisor.java │ │ │ └── BundleInstaller.java │ │ │ ├── index.txt │ │ │ ├── resource1.txt │ │ │ ├── resource2.txt │ │ │ ├── server-keystore.jks │ │ │ └── util │ │ │ ├── AsyncOutputServlet.java │ │ │ ├── BaseAsyncServlet.java │ │ │ ├── BaseChangeSessionIdServlet.java │ │ │ ├── BaseHttpContext.java │ │ │ ├── BaseHttpSessionAttributeListener.java │ │ │ ├── BaseHttpSessionIdListener.java │ │ │ ├── BaseServlet.java │ │ │ ├── BaseServletContextAttributeListener.java │ │ │ ├── BaseServletContextListener.java │ │ │ ├── BaseServletRequestAttributeListener.java │ │ │ ├── BaseServletRequestListener.java │ │ │ ├── BufferedServlet.java │ │ │ ├── DispatchResultServlet.java │ │ │ ├── EventHandler.java │ │ │ ├── MockFilter.java │ │ │ ├── MockPreprocessor.java │ │ │ ├── MockSCL.java │ │ │ ├── MockServlet.java │ │ │ ├── ServletRequestAdvisor.java │ │ │ ├── TestServletPrototype.java │ │ │ └── TestWBServlet.java │ └── test.xml ├── org.eclipse.equinox.http.servlet │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── .api_filters │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.api.tools.prefs │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── services │ │ │ └── org.eclipse.equinox.http.servlet.internal.multipart.MultipartSupportFactory │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── http │ │ └── servlet │ │ ├── ExtendedHttpService.java │ │ ├── HttpServiceMultipartServlet.java │ │ ├── HttpServiceServlet.java │ │ ├── RangeAwareServletContextHelper.java │ │ ├── context │ │ └── ContextPathCustomizer.java │ │ ├── dto │ │ ├── ExtendedFailedServletDTO.java │ │ └── ExtendedServletDTO.java │ │ ├── internal │ │ ├── Activator.java │ │ ├── DefaultServletContextHelper.java │ │ ├── DefaultServletContextHelperFactory.java │ │ ├── HttpServiceFactory.java │ │ ├── HttpServiceImpl.java │ │ ├── HttpServiceObjectRegistration.java │ │ ├── HttpServiceRuntimeImpl.java │ │ ├── PreprocessorCustomizer.java │ │ ├── context │ │ │ ├── ContextController.java │ │ │ ├── DispatchTargets.java │ │ │ ├── HttpContextHolder.java │ │ │ ├── ProxyContext.java │ │ │ ├── ServiceHolder.java │ │ │ └── WrappedHttpContext.java │ │ ├── customizer │ │ │ ├── ContextErrorPageTrackerCustomizer.java │ │ │ ├── ContextFilterTrackerCustomizer.java │ │ │ ├── ContextListenerTrackerCustomizer.java │ │ │ ├── ContextResourceTrackerCustomizer.java │ │ │ ├── ContextServletTrackerCustomizer.java │ │ │ └── RegistrationServiceTrackerCustomizer.java │ │ ├── dto │ │ │ ├── ExtendedErrorPageDTO.java │ │ │ └── ExtendedFailedServletContextDTO.java │ │ ├── error │ │ │ ├── HttpWhiteboardFailureException.java │ │ │ ├── IllegalContextNameException.java │ │ │ ├── IllegalContextPathException.java │ │ │ ├── NullServletContextHelperException.java │ │ │ ├── PatternInUseException.java │ │ │ ├── RegisteredFilterException.java │ │ │ ├── RegisteredServletContextHelperException.java │ │ │ └── ServletAlreadyRegisteredException.java │ │ ├── multipart │ │ │ ├── MultipartSupport.java │ │ │ ├── MultipartSupportFactory.java │ │ │ ├── MultipartSupportFactoryImpl.java │ │ │ ├── MultipartSupportImpl.java │ │ │ └── MultipartSupportPart.java │ │ ├── registration │ │ │ ├── EndpointRegistration.java │ │ │ ├── ErrorPageRegistration.java │ │ │ ├── FilterRegistration.java │ │ │ ├── ListenerRegistration.java │ │ │ ├── MatchableRegistration.java │ │ │ ├── PreprocessorRegistration.java │ │ │ ├── Registration.java │ │ │ ├── ResourceRegistration.java │ │ │ └── ServletRegistration.java │ │ ├── servlet │ │ │ ├── FilterChainImpl.java │ │ │ ├── FilterConfigImpl.java │ │ │ ├── HttpServletRequestWrapperImpl.java │ │ │ ├── HttpServletResponseWrapperImpl.java │ │ │ ├── HttpSessionAdaptor.java │ │ │ ├── HttpSessionTracker.java │ │ │ ├── IncludeDispatchResponseWrapper.java │ │ │ ├── Match.java │ │ │ ├── PreprocessorChainImpl.java │ │ │ ├── ProxyServlet.java │ │ │ ├── RequestDispatcherAdaptor.java │ │ │ ├── ResourceServlet.java │ │ │ ├── ResponseStateHandler.java │ │ │ ├── ServletConfigImpl.java │ │ │ └── ServletContextAdaptor.java │ │ └── util │ │ │ ├── BooleanPlus.java │ │ │ ├── Const.java │ │ │ ├── DTOUtil.java │ │ │ ├── EventListeners.java │ │ │ ├── HttpStatus.java │ │ │ ├── HttpTuple.java │ │ │ ├── Params.java │ │ │ ├── Path.java │ │ │ ├── ServiceProperties.java │ │ │ ├── ServiceReferenceMap.java │ │ │ ├── StringPlus.java │ │ │ ├── Throw.java │ │ │ ├── UMDictionaryMap.java │ │ │ └── UMMapDictionary.java │ │ ├── package.html │ │ └── session │ │ └── HttpSessionInvalidator.java ├── org.eclipse.equinox.http.servletbridge │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── http │ │ └── servletbridge │ │ └── internal │ │ └── Activator.java ├── org.eclipse.equinox.jsp.jasper.registry │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ ├── internal │ │ └── jsp │ │ │ └── jasper │ │ │ └── registry │ │ │ └── Activator.java │ │ └── jsp │ │ └── jasper │ │ └── registry │ │ ├── JSPFactory.java │ │ └── package.html ├── org.eclipse.equinox.jsp.jasper │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ ├── internal │ │ └── jsp │ │ │ └── jasper │ │ │ ├── Activator.java │ │ │ ├── BundleProxyClassLoader.java │ │ │ ├── JSPContextFinder.java │ │ │ └── JspClassLoader.java │ │ └── jsp │ │ └── jasper │ │ ├── JspServlet.java │ │ └── package.html ├── org.eclipse.equinox.launcher.cocoa.macosx.aarch64 │ ├── .project │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ └── launcher.cocoa.macosx.aarch64.properties ├── org.eclipse.equinox.launcher.cocoa.macosx.x86_64 │ ├── .project │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ └── launcher.cocoa.macosx.x86_64.properties ├── org.eclipse.equinox.launcher.gtk.linux.aarch64 │ ├── .project │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ └── launcher.gtk.linux.aarch64.properties ├── org.eclipse.equinox.launcher.gtk.linux.loongarch64 │ ├── .project │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ └── launcher.gtk.linux.loongarch64.properties ├── org.eclipse.equinox.launcher.gtk.linux.ppc64le │ ├── .project │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ └── launcher.gtk.linux.ppc64le.properties ├── org.eclipse.equinox.launcher.gtk.linux.riscv64 │ ├── .project │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ └── launcher.gtk.linux.riscv64.properties ├── org.eclipse.equinox.launcher.gtk.linux.x86_64 │ ├── .project │ ├── .settings │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ └── launcher.gtk.linux.x86_64.properties ├── org.eclipse.equinox.launcher.tests │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── build.properties │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── launcher │ │ ├── TestLauncherApp.java │ │ └── tests │ │ └── LauncherTests.java ├── org.eclipse.equinox.launcher.win32.win32.aarch64 │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ └── launcher.win32.win32.aarch64.properties ├── org.eclipse.equinox.launcher.win32.win32.x86_64 │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ └── launcher.win32.win32.x86_64.properties ├── org.eclipse.equinox.launcher │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── launcher.properties │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── launcher │ │ ├── Constants.java │ │ ├── JNIBridge.java │ │ ├── Main.java │ │ └── package.html ├── org.eclipse.equinox.log.stream │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── internal │ │ └── log │ │ └── stream │ │ ├── LogEntrySource.java │ │ ├── LogStreamManager.java │ │ ├── LogStreamProviderFactory.java │ │ └── LogStreamProviderImpl.java ├── org.eclipse.equinox.metatype │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.api.tools.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── metatype │ │ ├── EquinoxAttributeDefinition.java │ │ ├── EquinoxMetaTypeInformation.java │ │ ├── EquinoxMetaTypeService.java │ │ ├── EquinoxObjectClassDefinition.java │ │ ├── Extendable.java │ │ └── impl │ │ ├── Activator.java │ │ ├── AttributeDefinitionImpl.java │ │ ├── DataParser.java │ │ ├── Designate.java │ │ ├── ExtendableHelper.java │ │ ├── ExternalMessages.properties │ │ ├── FragmentUtils.java │ │ ├── Icon.java │ │ ├── LocalizationElement.java │ │ ├── LogMessages.properties │ │ ├── LogTracker.java │ │ ├── LogTrackerMsg.java │ │ ├── MetaTypeInformationImpl.java │ │ ├── MetaTypeMsg.java │ │ ├── MetaTypeProviderImpl.java │ │ ├── MetaTypeProviderTracker.java │ │ ├── MetaTypeServiceImpl.java │ │ ├── ObjectClassDefinitionImpl.java │ │ ├── Persistence.java │ │ └── ValueTokenizer.java ├── org.eclipse.equinox.preferences.tests │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── All Preferences Tests.launch │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── src │ │ └── org │ │ │ └── eclipse │ │ │ └── equinox │ │ │ └── preferences │ │ │ └── tests │ │ │ ├── EclipsePreferencesTest.java │ │ │ ├── OsgiPreferenceMetadataStoreTest.java │ │ │ ├── PreferenceMetadataTest.java │ │ │ └── ScopeStorageLocationTest.java │ └── test.xml ├── org.eclipse.equinox.preferences │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.api.tools.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about_files │ │ └── LICENSE-2.0.txt │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ ├── plugin.xml │ ├── schema │ │ └── preferences.exsd │ └── src │ │ └── org │ │ └── eclipse │ │ └── core │ │ ├── internal │ │ └── preferences │ │ │ ├── AbstractScope.java │ │ │ ├── Activator.java │ │ │ ├── Base64.java │ │ │ ├── BundleDefaultPreferences.java │ │ │ ├── BundleStateScope.java │ │ │ ├── BundleStateScopeServiceFactory.java │ │ │ ├── ConfigurationPreferences.java │ │ │ ├── DefaultPreferences.java │ │ │ ├── EclipsePreferences.java │ │ │ ├── ExportedPreferences.java │ │ │ ├── IPreferencesConstants.java │ │ │ ├── ImmutableMap.java │ │ │ ├── InstancePreferences.java │ │ │ ├── OSGiPreferencesServiceImpl.java │ │ │ ├── OSGiPreferencesServiceManager.java │ │ │ ├── PreferenceServiceRegistryHelper.java │ │ │ ├── PreferencesOSGiUtils.java │ │ │ ├── PreferencesService.java │ │ │ ├── PrefsMessages.java │ │ │ ├── RootPreferences.java │ │ │ ├── ScopeDescriptor.java │ │ │ ├── SingletonEclipsePreferences.java │ │ │ ├── SortedProperties.java │ │ │ ├── TestHelper.java │ │ │ ├── UserPreferences.java │ │ │ ├── exchange │ │ │ ├── ILegacyPreferences.java │ │ │ └── IProductPreferencesService.java │ │ │ └── messages.properties │ │ └── runtime │ │ └── preferences │ │ ├── AbstractPreferenceInitializer.java │ │ ├── AbstractPreferenceStorage.java │ │ ├── AbstractScope.java │ │ ├── BundleDefaultsScope.java │ │ ├── ConfigurationScope.java │ │ ├── DefaultScope.java │ │ ├── IEclipsePreferences.java │ │ ├── IExportedPreferences.java │ │ ├── IPreferenceFilter.java │ │ ├── IPreferenceMetadataStore.java │ │ ├── IPreferenceNodeVisitor.java │ │ ├── IPreferencesService.java │ │ ├── IScope.java │ │ ├── IScopeContext.java │ │ ├── InstanceScope.java │ │ ├── OsgiPreferenceMetadataStore.java │ │ ├── PreferenceFilterEntry.java │ │ ├── PreferenceMetadata.java │ │ ├── PreferenceModifyListener.java │ │ ├── UserScope.java │ │ └── package.html ├── org.eclipse.equinox.region.tests │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── bundles_src │ │ ├── BundleClient1 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── CapabilityClient1 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── CapabilityProvider1 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── CapabilityProvider2 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── capabilityprovider2 │ │ │ │ └── Activator.java │ │ ├── PackageClient1 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── PackageProvider1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── pkg1 │ │ │ │ ├── a │ │ │ │ └── A.java │ │ │ │ └── b │ │ │ │ └── B.java │ │ ├── PackageProvider2 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── pkg2 │ │ │ │ ├── a │ │ │ │ └── A.java │ │ │ │ └── b │ │ │ │ └── B.java │ │ ├── ServiceClient1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── serviceclient1 │ │ │ │ └── Activator.java │ │ ├── ServiceProvider1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── serviceprovider1 │ │ │ │ └── Activator.java │ │ ├── ServiceProvider2 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── serviceprovider2 │ │ │ │ └── Activator.java │ │ ├── Singleton1 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ └── Singleton2 │ │ │ └── META-INF │ │ │ └── MANIFEST.MF │ ├── forceQualifierUpdate.txt │ ├── src │ │ └── org │ │ │ └── eclipse │ │ │ └── equinox │ │ │ └── region │ │ │ ├── internal │ │ │ └── tests │ │ │ │ ├── Bug395334Test.java │ │ │ │ ├── BundleIdBasedRegionTests.java │ │ │ │ ├── RegionReflectionUtils.java │ │ │ │ ├── StandardBundleIdToRegionMappingTests.java │ │ │ │ ├── StandardRegionDigraphPeristenceTests.java │ │ │ │ ├── StandardRegionDigraphTests.java │ │ │ │ ├── StandardRegionFilterTests.java │ │ │ │ └── hook │ │ │ │ ├── RegionBundleCollisionHookTests.java │ │ │ │ ├── RegionBundleEventHookTests.java │ │ │ │ ├── RegionBundleFindHookTests.java │ │ │ │ ├── RegionResolverHookTests.java │ │ │ │ ├── RegionServiceEventHookTests.java │ │ │ │ └── RegionServiceFindHookTests.java │ │ │ └── tests │ │ │ ├── AllTests.java │ │ │ ├── BundleInstaller.java │ │ │ └── system │ │ │ ├── AbstractRegionSystemTest.java │ │ │ ├── Bug346127Test.java │ │ │ ├── RegionPerformanceTests.java │ │ │ └── RegionSystemTests.java │ ├── stubs │ │ ├── README │ │ ├── org.eclipse.virgo.teststubs.osgi-sources.jar │ │ └── org.eclipse.virgo.teststubs.osgi.jar │ └── test.xml ├── org.eclipse.equinox.region │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── OSGI-INF │ │ └── l10n │ │ │ └── bundle.properties │ ├── README.md │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ ├── internal │ │ └── region │ │ │ ├── BundleIdBasedRegion.java │ │ │ ├── BundleIdToRegionMapping.java │ │ │ ├── EquinoxStateHelper.java │ │ │ ├── RegionLifecycleListener.java │ │ │ ├── RegionManager.java │ │ │ ├── StandardBundleIdToRegionMapping.java │ │ │ ├── StandardRegionDigraph.java │ │ │ ├── StandardRegionDigraphPersistence.java │ │ │ ├── StandardRegionFilter.java │ │ │ ├── StandardRegionFilterBuilder.java │ │ │ ├── SubgraphTraverser.java │ │ │ ├── hook │ │ │ ├── RegionBundleCollisionHook.java │ │ │ ├── RegionBundleEventHook.java │ │ │ ├── RegionBundleFindHook.java │ │ │ ├── RegionDigraphVisitorBase.java │ │ │ ├── RegionResolverHook.java │ │ │ ├── RegionResolverHookFactory.java │ │ │ ├── RegionServiceEventHook.java │ │ │ └── RegionServiceFindHook.java │ │ │ └── management │ │ │ ├── RegionObjectNameCreator.java │ │ │ ├── StandardManageableRegion.java │ │ │ └── StandardManageableRegionDigraph.java │ │ └── region │ │ ├── Region.java │ │ ├── RegionDigraph.java │ │ ├── RegionDigraphPersistence.java │ │ ├── RegionDigraphVisitor.java │ │ ├── RegionFilter.java │ │ ├── RegionFilterBuilder.java │ │ └── management │ │ ├── ManageableRegion.java │ │ └── ManageableRegionDigraph.java ├── org.eclipse.equinox.registry │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── README.md │ ├── about.html │ ├── about_files │ │ ├── LICENSE-2.0.txt │ │ └── NOTICE.txt │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ ├── plugin.xml │ ├── schema │ │ └── adapters.exsd │ └── src │ │ └── org │ │ └── eclipse │ │ └── core │ │ ├── internal │ │ ├── adapter │ │ │ ├── AdapterFactoryProxy.java │ │ │ └── AdapterManagerListener.java │ │ └── registry │ │ │ ├── BaseExtensionHandle.java │ │ │ ├── BaseExtensionPointHandle.java │ │ │ ├── BufferedRandomInputStream.java │ │ │ ├── CombinedEventDelta.java │ │ │ ├── ConfigurationElement.java │ │ │ ├── ConfigurationElementHandle.java │ │ │ ├── ConfigurationElementMulti.java │ │ │ ├── Contribution.java │ │ │ ├── DirectMap.java │ │ │ ├── Extension.java │ │ │ ├── ExtensionDelta.java │ │ │ ├── ExtensionHandle.java │ │ │ ├── ExtensionMulti.java │ │ │ ├── ExtensionPoint.java │ │ │ ├── ExtensionPointHandle.java │ │ │ ├── ExtensionPointMulti.java │ │ │ ├── ExtensionRegistry.java │ │ │ ├── ExtensionsParser.java │ │ │ ├── Handle.java │ │ │ ├── HashtableOfStringAndInt.java │ │ │ ├── IObjectManager.java │ │ │ ├── IRegistryConstants.java │ │ │ ├── KeyedElement.java │ │ │ ├── KeyedHashSet.java │ │ │ ├── OffsetTable.java │ │ │ ├── ReadWriteMonitor.java │ │ │ ├── ReferenceMap.java │ │ │ ├── RegistryChangeEvent.java │ │ │ ├── RegistryDelta.java │ │ │ ├── RegistryIndexChildren.java │ │ │ ├── RegistryIndexElement.java │ │ │ ├── RegistryMessages.java │ │ │ ├── RegistryObject.java │ │ │ ├── RegistryObjectFactory.java │ │ │ ├── RegistryObjectFactoryMulti.java │ │ │ ├── RegistryObjectManager.java │ │ │ ├── RegistryProperties.java │ │ │ ├── RegistryProviderFactory.java │ │ │ ├── RegistrySupport.java │ │ │ ├── RegistryTimestamp.java │ │ │ ├── TableReader.java │ │ │ ├── TableWriter.java │ │ │ ├── TemporaryObjectManager.java │ │ │ ├── ThirdLevelConfigurationElementHandle.java │ │ │ ├── messages.properties │ │ │ ├── osgi │ │ │ ├── Activator.java │ │ │ ├── EclipseBundleListener.java │ │ │ ├── EquinoxRegistryStrategy.java │ │ │ ├── EquinoxUtils.java │ │ │ ├── ExtensionEventDispatcherJob.java │ │ │ ├── OSGIUtils.java │ │ │ ├── RegistryCommandProvider.java │ │ │ ├── RegistryProviderOSGI.java │ │ │ └── RegistryStrategyOSGI.java │ │ │ └── spi │ │ │ ├── ConfigurationElementAttribute.java │ │ │ └── ConfigurationElementDescription.java │ │ └── runtime │ │ ├── ContributorFactoryOSGi.java │ │ ├── ContributorFactorySimple.java │ │ ├── IConfigurationElement.java │ │ ├── IContributor.java │ │ ├── IExecutableExtension.java │ │ ├── IExecutableExtensionFactory.java │ │ ├── IExtension.java │ │ ├── IExtensionDelta.java │ │ ├── IExtensionPoint.java │ │ ├── IExtensionRegistry.java │ │ ├── IRegistryChangeEvent.java │ │ ├── IRegistryChangeListener.java │ │ ├── IRegistryEventListener.java │ │ ├── InvalidRegistryObjectException.java │ │ ├── RegistryFactory.java │ │ ├── dynamichelpers │ │ ├── ExtensionTracker.java │ │ ├── IExtensionChangeHandler.java │ │ ├── IExtensionTracker.java │ │ ├── IFilter.java │ │ └── package.html │ │ └── spi │ │ ├── IDynamicExtensionRegistry.java │ │ ├── IRegistryProvider.java │ │ ├── RegistryContributor.java │ │ ├── RegistryStrategy.java │ │ └── package.html ├── org.eclipse.equinox.security.linux │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── fragment.properties │ ├── fragment.xml │ ├── pom.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── internal │ │ └── security │ │ └── linux │ │ ├── GBusType.java │ │ ├── GError.java │ │ ├── GList.java │ │ ├── LinuxPasswordProvider.java │ │ ├── LinuxPasswordProviderMessages.java │ │ ├── SecretCollectionFlags.java │ │ ├── SecretSchema.java │ │ ├── SecretSchemaAttribute.java │ │ ├── SecretSchemaAttributeType.java │ │ ├── SecretSchemaFlags.java │ │ ├── SecretServiceFlags.java │ │ └── messages.properties ├── org.eclipse.equinox.security.macosx │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── fragment.properties │ ├── fragment.xml │ ├── keystoreNative │ │ ├── build.xml │ │ ├── keystoreNative.h │ │ ├── keystoreNative.xcodeproj │ │ │ ├── default.pbxuser │ │ │ ├── kim.mode1v3 │ │ │ ├── kim.pbxuser │ │ │ └── project.pbxproj │ │ ├── resources │ │ │ └── Manifest │ │ └── src │ │ │ ├── keystoreNative.java │ │ │ └── keystoreNativejnilib.c │ ├── libkeystoreNative.jnilib │ ├── pom.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── internal │ │ └── security │ │ └── osx │ │ ├── OSXProvider.java │ │ ├── OSXProviderMessages.java │ │ └── messages.properties ├── org.eclipse.equinox.security.tests │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── Plugin_Testing │ │ ├── controlled_provider │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── plugin.xml │ │ └── priority │ │ │ ├── high │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── plugin.xml │ │ │ └── low │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ └── plugin.xml │ ├── SecurePrefsSample │ │ └── 1 │ │ │ └── secure_storage.equinox │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── src │ │ └── org │ │ │ └── eclipse │ │ │ └── equinox │ │ │ ├── internal │ │ │ └── security │ │ │ │ └── tests │ │ │ │ ├── SecurityTestsActivator.java │ │ │ │ └── storage │ │ │ │ ├── Base64Test.java │ │ │ │ ├── ControlledPasswordProvider.java │ │ │ │ ├── DefaultPreferencesTest.java │ │ │ │ ├── DetectPBECiphersTest.java │ │ │ │ ├── DynamicPreferencesTest.java │ │ │ │ ├── HighPriorityModule.java │ │ │ │ ├── LinuxPreferencesTest.java │ │ │ │ ├── LowPriorityModule.java │ │ │ │ ├── ManualTest.java │ │ │ │ ├── ObsoletesTest.java │ │ │ │ ├── ReEncrypterTest.java │ │ │ │ ├── SecurePreferencesTest.java │ │ │ │ ├── SlashEncodeTest.java │ │ │ │ ├── StorageAbstractTest.java │ │ │ │ ├── WaitingRegistryListener.java │ │ │ │ └── WinPreferencesTest.java │ │ │ └── security │ │ │ └── tests │ │ │ └── AllSecurityTests.java │ └── test.xml ├── org.eclipse.equinox.security.ui │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── icons │ │ ├── full │ │ │ └── obj16 │ │ │ │ ├── green.GIF │ │ │ │ ├── red.GIF │ │ │ │ ├── signed_yes_tbl.gif │ │ │ │ └── yellow.GIF │ │ └── storage │ │ │ ├── decrypt.gif │ │ │ ├── encrypt.gif │ │ │ ├── export_secure.gif │ │ │ ├── export_secure_wiz.png │ │ │ ├── login_wiz.png │ │ │ ├── new_value_wiz.png │ │ │ ├── node_delete.gif │ │ │ ├── node_new.gif │ │ │ ├── node_refresh.gif │ │ │ ├── save.gif │ │ │ ├── secure_storage.gif │ │ │ ├── value_delete.gif │ │ │ ├── value_new.gif │ │ │ └── value_show.gif │ ├── plugin.properties │ ├── plugin.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── internal │ │ ├── provisional │ │ └── security │ │ │ └── ui │ │ │ ├── AuthorizationManager.java │ │ │ ├── SecurityContributionItemFactory.java │ │ │ ├── X500PrincipalHelper.java │ │ │ ├── X509CertificateViewDialog.java │ │ │ └── package.html │ │ └── security │ │ └── ui │ │ ├── Activator.java │ │ ├── ConfirmationDialog.java │ │ ├── DefaultAuthorizationManager.java │ │ ├── SecurityConfigurationSection.java │ │ ├── SecurityStatusControl.java │ │ ├── SecurityUIMsg.java │ │ ├── SecurityUIMsg.properties │ │ ├── X509CertificateAttribute.java │ │ ├── X509CertificateAttributeContentProvider.java │ │ ├── X509CertificateAttributeLabelProvider.java │ │ ├── nls │ │ ├── SecUIMessages.java │ │ └── messages.properties │ │ ├── preferences │ │ └── SecurityCategoryPage.java │ │ ├── storage │ │ ├── ChallengeResponseDialog.java │ │ ├── ChangePasswordWizard.java │ │ ├── ChangePasswordWizardDialog.java │ │ ├── DefaultPasswordProvider.java │ │ ├── IStorageConst.java │ │ ├── PasswordRecoveryDialog.java │ │ ├── StorageLoginDialog.java │ │ ├── StoragePreferencePage.java │ │ ├── StorageUtils.java │ │ ├── TabAdvanced.java │ │ ├── TabContents.java │ │ ├── TabPassword.java │ │ ├── UICallbackProvider.java │ │ └── view │ │ │ ├── ExportDialog.java │ │ │ ├── ISecurePreferencesSelection.java │ │ │ ├── NewNodeDialog.java │ │ │ ├── NewValueDialog.java │ │ │ ├── NodesView.java │ │ │ └── ValuesView.java │ │ └── wizard │ │ ├── CertificateImportCertSelectPage.java │ │ ├── CertificateImportConfirmationPage.java │ │ ├── CertificateImportFileSelectPage.java │ │ ├── CertificateImportTrustEngineSelectPage.java │ │ ├── CertificateImportWizard.java │ │ └── CertificateViewer.java ├── org.eclipse.equinox.security.win32 │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── ReadMe.txt │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── fragment.properties │ ├── fragment.xml │ ├── pom.xml │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── internal │ │ └── security │ │ └── win32 │ │ ├── WinCryptoMessages.java │ │ ├── WindowsPasswordProvider.java │ │ └── messages.properties ├── org.eclipse.equinox.security │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ ├── plugin.xml │ ├── pom.xml │ ├── readme.txt │ ├── schema │ │ ├── callbackHandler.exsd │ │ ├── callbackHandlerMapping.exsd │ │ ├── internalUI.exsd │ │ ├── loginConfigurationProvider.exsd │ │ ├── loginModule.exsd │ │ └── secureStorage.exsd │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ ├── internal │ │ └── security │ │ │ ├── auth │ │ │ ├── AuthPlugin.java │ │ │ ├── ConfigurationFactory.java │ │ │ ├── ConfigurationFederator.java │ │ │ ├── SecureContext.java │ │ │ ├── SecurePlatformInternal.java │ │ │ ├── events │ │ │ │ └── SecurityEventsManager.java │ │ │ ├── ext │ │ │ │ └── loader │ │ │ │ │ ├── ExtCallbackHandlerLoader.java │ │ │ │ │ └── ExtLoginModuleLoader.java │ │ │ └── nls │ │ │ │ ├── SecAuthMessages.java │ │ │ │ └── messages.properties │ │ │ ├── credentials │ │ │ ├── EquinoxPrivateCredential.java │ │ │ └── EquinoxPublicCredential.java │ │ │ └── storage │ │ │ ├── Base64.java │ │ │ ├── CallbacksProvider.java │ │ │ ├── CryptoData.java │ │ │ ├── JavaEncryption.java │ │ │ ├── PasswordExt.java │ │ │ ├── PasswordManagement.java │ │ │ ├── PasswordProviderModuleExt.java │ │ │ ├── PasswordProviderSelector.java │ │ │ ├── PersistedPath.java │ │ │ ├── SecurePreferences.java │ │ │ ├── SecurePreferencesContainer.java │ │ │ ├── SecurePreferencesMapper.java │ │ │ ├── SecurePreferencesRoot.java │ │ │ ├── SecurePreferencesWrapper.java │ │ │ ├── SlashEncode.java │ │ │ ├── StorageUtils.java │ │ │ ├── friends │ │ │ ├── IDeleteListener.java │ │ │ ├── IStorageConstants.java │ │ │ ├── IStorageTask.java │ │ │ ├── IUICallbacks.java │ │ │ ├── InternalExchangeUtils.java │ │ │ ├── PasswordProviderDescription.java │ │ │ └── ReEncrypter.java │ │ │ └── provider │ │ │ └── IValidatingPasswordProvider.java │ │ └── security │ │ ├── auth │ │ ├── ILoginContext.java │ │ ├── ILoginContextListener.java │ │ ├── LoginContextFactory.java │ │ ├── credentials │ │ │ ├── CredentialsFactory.java │ │ │ ├── IPrivateCredential.java │ │ │ ├── IPublicCredential.java │ │ │ └── package.html │ │ ├── module │ │ │ ├── ExtensionLoginModule.java │ │ │ └── package.html │ │ └── package.html │ │ └── storage │ │ ├── EncodingUtils.java │ │ ├── ISecurePreferences.java │ │ ├── SecurePreferencesFactory.java │ │ ├── StorageException.java │ │ ├── package.html │ │ └── provider │ │ ├── IPreferencesContainer.java │ │ ├── IProviderHints.java │ │ ├── PasswordProvider.java │ │ └── package.html ├── org.eclipse.equinox.servletbridge │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── servletbridge │ │ ├── BridgeServlet.java │ │ ├── CloseableURLClassLoader.java │ │ └── FrameworkLauncher.java ├── org.eclipse.equinox.slf4j │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── services │ │ │ └── org.slf4j.spi.SLF4JServiceProvider │ ├── about.html │ ├── build.properties │ ├── plugin.properties │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── slf4j │ │ ├── EquinoxLogger.java │ │ ├── EquinoxLoggerFactory.java │ │ ├── EquinoxLoggerFactoryActivator.java │ │ └── EquinoxSLF4JProvider.java ├── org.eclipse.equinox.transforms.hook │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── New Format Transformer Launch.launch │ ├── README.md │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── hookconfigurators.properties │ ├── src │ │ └── org │ │ │ └── eclipse │ │ │ └── equinox │ │ │ └── internal │ │ │ └── transforms │ │ │ ├── CSVParser.java │ │ │ ├── LazyInputStream.java │ │ │ ├── ProxyStreamTransformer.java │ │ │ ├── ReplaceTransformer.java │ │ │ ├── StreamTransformer.java │ │ │ ├── TransformInstanceListData.java │ │ │ ├── TransformTuple.java │ │ │ ├── TransformedBundleEntry.java │ │ │ ├── TransformedBundleFile.java │ │ │ ├── TransformerBundleExtender.java │ │ │ ├── TransformerHook.java │ │ │ └── TransformerList.java │ └── transformsHook.properties ├── org.eclipse.equinox.transforms.xslt │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── bundle.properties │ ├── forceQualifierUpdate.txt │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── internal │ │ └── transforms │ │ ├── Pipe.java │ │ └── xslt │ │ ├── Activator.java │ │ └── XSLTStreamTransformer.java ├── org.eclipse.equinox.useradmin │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.jdt.ui.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── internal │ │ └── useradmin │ │ ├── Activator.java │ │ ├── Authorization.java │ │ ├── ExternalMessages.properties │ │ ├── Group.java │ │ ├── LogMessages.properties │ │ ├── LogTracker.java │ │ ├── LogTrackerMsg.java │ │ ├── Role.java │ │ ├── User.java │ │ ├── UserAdmin.java │ │ ├── UserAdminEventAdapter.java │ │ ├── UserAdminEventProducer.java │ │ ├── UserAdminHashtable.java │ │ ├── UserAdminMsg.java │ │ └── UserAdminStore.java ├── org.eclipse.equinox.weaving.caching.j9 │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── p2.inf │ ├── OSGI-INF │ │ └── l10n │ │ │ └── bundle.properties │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── j9stubs.jar │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── weaving │ │ └── internal │ │ └── caching │ │ └── j9 │ │ ├── CachingService.java │ │ ├── CachingServiceFactory.java │ │ └── CachingServicePlugin.java ├── org.eclipse.equinox.weaving.caching │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.core.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── p2.inf │ ├── OSGI-INF │ │ └── l10n │ │ │ └── bundle.properties │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── weaving │ │ └── internal │ │ └── caching │ │ ├── Activator.java │ │ ├── BundleCachingService.java │ │ ├── CacheItem.java │ │ ├── CacheItemKey.java │ │ ├── CacheWriter.java │ │ ├── CachingServiceFactory.java │ │ ├── ClassnameLockManager.java │ │ ├── IBundleConstants.java │ │ ├── Log.java │ │ └── UnchangedCachingService.java ├── org.eclipse.equinox.weaving.hook │ ├── .classpath │ ├── .options │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── OSGI-INF │ │ └── l10n │ │ │ └── bundle.properties │ ├── about.html │ ├── build.properties │ ├── config.ini │ ├── forceQualifierUpdate.txt │ ├── hookconfigurators.properties │ ├── readme.txt │ └── src │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ ├── service │ │ └── weaving │ │ │ ├── CacheEntry.java │ │ │ ├── ICachingService.java │ │ │ ├── ICachingServiceFactory.java │ │ │ ├── ISupplementerRegistry.java │ │ │ ├── IWeavingService.java │ │ │ ├── IWeavingServiceFactory.java │ │ │ └── Supplementer.java │ │ └── weaving │ │ ├── adaptors │ │ ├── Debug.java │ │ ├── IWeavingAdaptor.java │ │ ├── WeavingAdaptor.java │ │ └── WeavingAdaptorFactory.java │ │ └── hooks │ │ ├── AbstractWeavingBundleFile.java │ │ ├── AbstractWeavingHook.java │ │ ├── BaseWeavingBundleFile.java │ │ ├── BundleAdaptorProvider.java │ │ ├── CachedClassBundleEntry.java │ │ ├── CachedGeneratedClassBundleEntry.java │ │ ├── IAdaptorProvider.java │ │ ├── SupplementBundleListener.java │ │ ├── SupplementerRegistry.java │ │ ├── WeavingBundleEntry.java │ │ ├── WeavingBundleFile.java │ │ ├── WeavingHook.java │ │ └── WeavingLoaderDelegateHook.java ├── org.eclipse.osgi.compatibility.state │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.pde.api.tools.prefs │ │ └── org.eclipse.pde.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── OSGI-INF │ │ └── l10n │ │ │ └── bundle.properties │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ └── src │ │ └── org │ │ └── eclipse │ │ └── osgi │ │ ├── compatibility │ │ └── state │ │ │ ├── Activator.java │ │ │ ├── PlatformAdminImpl.java │ │ │ ├── PlatformBundleListener.java │ │ │ ├── ReadOnlyState.java │ │ │ └── StateConverter.java │ │ └── internal │ │ ├── module │ │ ├── BundleConstraint.java │ │ ├── CompositeResolveHelper.java │ │ ├── CompositeResolveHelperRegistry.java │ │ ├── GenericCapability.java │ │ ├── GenericConstraint.java │ │ ├── GroupingChecker.java │ │ ├── MappedList.java │ │ ├── PermissionChecker.java │ │ ├── ResolverBundle.java │ │ ├── ResolverConstraint.java │ │ ├── ResolverExport.java │ │ ├── ResolverImpl.java │ │ ├── ResolverImport.java │ │ ├── VersionHashMap.java │ │ └── VersionSupplier.java │ │ └── resolver │ │ ├── BaseDescriptionImpl.java │ │ ├── BundleDeltaImpl.java │ │ ├── BundleDescriptionImpl.java │ │ ├── BundleSpecificationImpl.java │ │ ├── ExportPackageDescriptionImpl.java │ │ ├── GenericDescriptionImpl.java │ │ ├── GenericSpecificationImpl.java │ │ ├── HostSpecificationImpl.java │ │ ├── ImportPackageSpecificationImpl.java │ │ ├── NativeCodeDescriptionImpl.java │ │ ├── NativeCodeSpecificationImpl.java │ │ ├── ResolverErrorImpl.java │ │ ├── StateBuilder.java │ │ ├── StateDeltaImpl.java │ │ ├── StateHelperImpl.java │ │ ├── StateImpl.java │ │ ├── StateMessages.properties │ │ ├── StateMsg.java │ │ ├── StateObjectFactoryImpl.java │ │ ├── StateReader.java │ │ ├── StateWriter.java │ │ ├── UserState.java │ │ └── VersionConstraintImpl.java ├── org.eclipse.osgi.services │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ └── org.eclipse.pde.api.tools.prefs │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── p2.inf │ ├── about.html │ ├── about_files │ │ └── LICENSE-2.0.txt │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ └── src │ │ └── org │ │ └── osgi │ │ └── service │ │ ├── component │ │ └── annotations │ │ │ ├── Activate.java │ │ │ ├── Component.java │ │ │ ├── ConfigurationPolicy.java │ │ │ ├── Deactivate.java │ │ │ ├── FieldOption.java │ │ │ ├── Modified.java │ │ │ ├── Reference.java │ │ │ ├── ReferenceCardinality.java │ │ │ ├── ReferencePolicy.java │ │ │ ├── ReferencePolicyOption.java │ │ │ ├── ReferenceScope.java │ │ │ ├── ServiceScope.java │ │ │ ├── package-info.java │ │ │ └── packageinfo │ │ └── log │ │ └── note.txt ├── org.eclipse.osgi.tck │ ├── META-INF │ │ └── MANIFEST.MF │ └── build.properties ├── org.eclipse.osgi.tests │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.core.runtime.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ ├── org.eclipse.ltk.core.refactoring.prefs │ │ └── org.eclipse.pde.prefs │ ├── All OSGi Tests.launch │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── services │ │ │ └── javax.print.PrintServiceLookup │ ├── about.html │ ├── build.properties │ ├── bundles_src │ │ ├── activator.error1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── activator │ │ │ │ └── error1 │ │ │ │ └── Activator.java │ │ ├── activator.error2 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── activator │ │ │ │ └── error2 │ │ │ │ └── Activator.java │ │ ├── activator.error3 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── activator │ │ │ │ └── error3 │ │ │ │ └── Activator.java │ │ ├── activator.error4 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── activator.hooks.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── osgi │ │ │ │ └── tests │ │ │ │ └── hooks │ │ │ │ └── framework │ │ │ │ └── activator │ │ │ │ └── a │ │ │ │ ├── TestHookConfigurator1.java │ │ │ │ ├── TestHookConfigurator2.java │ │ │ │ └── TestHookConfigurator3.java │ │ ├── buddy.dependent.a.test1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── buddy │ │ │ │ └── dependent │ │ │ │ │ └── a │ │ │ │ │ └── test1 │ │ │ │ │ └── ATest.java │ │ │ └── resources │ │ │ │ ├── test.txt │ │ │ │ └── test1.txt │ │ ├── buddy.dependent.a.test2 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── buddy │ │ │ │ └── dependent │ │ │ │ │ └── a │ │ │ │ │ └── test2 │ │ │ │ │ └── ATest.java │ │ │ └── resources │ │ │ │ ├── test.txt │ │ │ │ └── test2.txt │ │ ├── buddy.dependent.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── resources │ │ │ │ └── test.txt │ │ ├── buddy.invalid.a │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── buddy.registered.a.test1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── buddy │ │ │ │ └── registered │ │ │ │ │ └── a │ │ │ │ │ └── test1 │ │ │ │ │ └── ATest.java │ │ │ └── resources │ │ │ │ ├── test.txt │ │ │ │ └── test1.txt │ │ ├── buddy.registered.a.test2 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── buddy │ │ │ │ └── registered │ │ │ │ │ └── a │ │ │ │ │ └── test2 │ │ │ │ │ └── ATest.java │ │ │ └── resources │ │ │ │ ├── test.txt │ │ │ │ └── test2.txt │ │ ├── buddy.registered.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── resources │ │ │ │ └── test.txt │ │ ├── chain.test.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── chain │ │ │ │ └── test │ │ │ │ └── a │ │ │ │ ├── AChain.java │ │ │ │ ├── AMultiChain1.java │ │ │ │ ├── AMultiChain2.java │ │ │ │ └── Activator.java │ │ ├── chain.test.b │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── chain │ │ │ │ └── test │ │ │ │ └── b │ │ │ │ ├── Activator.java │ │ │ │ ├── BChain.java │ │ │ │ ├── BMultiChain1.java │ │ │ │ └── BMultiChain2.java │ │ ├── chain.test.c │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── chain │ │ │ │ └── test │ │ │ │ └── c │ │ │ │ ├── Activator.java │ │ │ │ ├── CMultipleChain1.java │ │ │ │ └── CMultipleChain2.java │ │ ├── chain.test.d │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── chain │ │ │ │ └── test │ │ │ │ └── d │ │ │ │ ├── Activator.java │ │ │ │ └── DMultipleChain1.java │ │ ├── chain.test │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── chain │ │ │ │ └── test │ │ │ │ ├── Activator.java │ │ │ │ ├── TestMultiChain.java │ │ │ │ └── TestSingleChain.java │ │ ├── circularity.test.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── circularity │ │ │ │ └── test │ │ │ │ └── a │ │ │ │ ├── Activator.java │ │ │ │ └── ICircularity.java │ │ ├── circularity.test │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── circularity │ │ │ │ └── test │ │ │ │ ├── Activator.java │ │ │ │ └── TestCircularity.java │ │ ├── classloader.hooks.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── osgi │ │ │ │ └── tests │ │ │ │ └── classloader │ │ │ │ └── hooks │ │ │ │ └── a │ │ │ │ └── TestHookConfigurator.java │ │ ├── client1.multiple.exports │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── client1 │ │ │ │ └── multiple │ │ │ │ └── exports │ │ │ │ └── Activator.java │ │ ├── client2.multiple.exports │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── client2 │ │ │ │ └── multiple │ │ │ │ └── exports │ │ │ │ └── Activator.java │ │ ├── exporter.importer1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── exporter │ │ │ │ └── importer │ │ │ │ └── test │ │ │ │ └── Test1.java │ │ ├── exporter.importer2 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── exporter │ │ │ │ └── importer │ │ │ │ └── test │ │ │ │ └── Test2.java │ │ ├── exporter.importer3 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── exporter │ │ │ │ └── importer │ │ │ │ ├── Activator.java │ │ │ │ └── test │ │ │ │ └── Test3.java │ │ ├── exporter.importer4 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── ext.extclasspath.a.importer │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── ext │ │ │ │ └── extclasspath │ │ │ │ └── a │ │ │ │ └── importer │ │ │ │ └── Activator.java │ │ ├── ext.extclasspath.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── ext │ │ │ │ └── extclasspath │ │ │ │ └── a │ │ │ │ ├── ExtClasspathExtTest.java │ │ │ │ └── extresource.txt │ │ ├── ext.framework.a.importer │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── ext │ │ │ │ └── framework │ │ │ │ └── a │ │ │ │ └── importer │ │ │ │ └── Activator.java │ │ ├── ext.framework.a.requires │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── ext │ │ │ │ └── framework │ │ │ │ └── a │ │ │ │ └── requires │ │ │ │ └── Activator.java │ │ ├── ext.framework.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── ext │ │ │ │ └── framework │ │ │ │ └── a │ │ │ │ ├── FrameworkExtTest.java │ │ │ │ └── fwkresource.txt │ │ ├── ext.framework.b │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── ext │ │ │ │ └── framework │ │ │ │ └── b │ │ │ │ └── TestCondition.java │ │ ├── ext.framework.osgiee.b │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── frag.multiple.exports │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── host │ │ │ │ └── multiple │ │ │ │ └── exports │ │ │ │ ├── PrivateClass1.java │ │ │ │ └── PrivateClass2.java │ │ ├── fragment.test.attach.frag.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── fragment │ │ │ │ └── test │ │ │ │ └── attach │ │ │ │ └── host │ │ │ │ └── a │ │ │ │ └── internal │ │ │ │ └── test │ │ │ │ ├── TestPackageAccess.java │ │ │ │ └── TestPackageAccess2.java │ │ ├── fragment.test.attach.frag.b │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── fragment │ │ │ │ └── test │ │ │ │ └── attach │ │ │ │ └── frag │ │ │ │ └── b │ │ │ │ └── Test.java │ │ ├── fragment.test.attach.host.a.require │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── fragment.test.attach.host.a.v2 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── fragment │ │ │ │ └── test │ │ │ │ └── attach │ │ │ │ └── host │ │ │ │ └── a │ │ │ │ ├── Activator2.java │ │ │ │ └── internal │ │ │ │ └── test │ │ │ │ └── PackageAccessTest2.java │ │ ├── fragment.test.attach.host.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── fragment │ │ │ │ └── test │ │ │ │ └── attach │ │ │ │ └── host │ │ │ │ └── a │ │ │ │ ├── Activator.java │ │ │ │ └── internal │ │ │ │ └── test │ │ │ │ └── PackageAccessTest.java │ │ ├── geturl │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── geturl │ │ │ │ └── Activator.java │ │ ├── host.multiple.exports │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── host │ │ │ │ └── multiple │ │ │ │ └── exports │ │ │ │ ├── PublicClass1.java │ │ │ │ ├── PublicClass2.java │ │ │ │ └── onlyone │ │ │ │ └── PublicClass1.java │ │ ├── legacy.lazystart.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── legacy │ │ │ │ └── lazystart │ │ │ │ └── a │ │ │ │ ├── ATest.java │ │ │ │ └── Activator.java │ │ ├── legacy.lazystart.b │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── legacy │ │ │ │ └── lazystart │ │ │ │ └── b │ │ │ │ ├── Activator.java │ │ │ │ ├── BTest.java │ │ │ │ └── excluded │ │ │ │ ├── a │ │ │ │ └── BAExcluded.java │ │ │ │ └── b │ │ │ │ └── BBExcluded.java │ │ ├── legacy.lazystart.c │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── legacy │ │ │ │ └── lazystart │ │ │ │ └── c │ │ │ │ ├── Activator.java │ │ │ │ ├── CTest.java │ │ │ │ └── excluded │ │ │ │ ├── a │ │ │ │ └── CAExcluded.java │ │ │ │ └── b │ │ │ │ └── CBExcluded.java │ │ ├── legacy.lazystart │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── legacy │ │ │ │ └── lazystart │ │ │ │ ├── FalseExceptionLegacy1.java │ │ │ │ ├── FalseExceptionLegacy2.java │ │ │ │ ├── SimpleLegacy.java │ │ │ │ ├── TrueExceptionLegacy1.java │ │ │ │ └── TrueExceptionLegacy2.java │ │ ├── mrBundleInputBase │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── manifests │ │ │ │ ├── manifest10.mf │ │ │ │ ├── manifest11.mf │ │ │ │ ├── manifest8.mf │ │ │ │ └── manifest9.mf │ │ │ └── multi │ │ │ │ └── release │ │ │ │ └── test │ │ │ │ ├── TestClass10.java │ │ │ │ ├── TestClass11.java │ │ │ │ ├── TestClass8.java │ │ │ │ ├── TestClass9.java │ │ │ │ ├── TestClassAdd10.java │ │ │ │ ├── TestClassAdd11.java │ │ │ │ ├── TestClassAdd8.java │ │ │ │ ├── TestClassAdd9.java │ │ │ │ ├── TestClassBase.java │ │ │ │ ├── TestService.java │ │ │ │ ├── TestService9.java │ │ │ │ ├── TestServiceBase.java │ │ │ │ ├── sub │ │ │ │ ├── TestClass10.java │ │ │ │ ├── TestClass11.java │ │ │ │ ├── TestClass8.java │ │ │ │ ├── TestClass9.java │ │ │ │ ├── TestClassAdd10.java │ │ │ │ ├── TestClassAdd11.java │ │ │ │ ├── TestClassAdd8.java │ │ │ │ ├── TestClassAdd9.java │ │ │ │ ├── TestClassBase.java │ │ │ │ ├── testResource10.txt │ │ │ │ ├── testResource11.txt │ │ │ │ ├── testResource8.txt │ │ │ │ ├── testResource9.txt │ │ │ │ ├── testResourceAdd10.txt │ │ │ │ ├── testResourceAdd11.txt │ │ │ │ ├── testResourceAdd8.txt │ │ │ │ ├── testResourceAdd9.txt │ │ │ │ └── testResourceBase.txt │ │ │ │ ├── sub2 │ │ │ │ ├── TestClass10.java │ │ │ │ ├── TestClass11.java │ │ │ │ ├── TestClass8.java │ │ │ │ ├── TestClass9.java │ │ │ │ ├── TestClassAdd10.java │ │ │ │ ├── TestClassAdd11.java │ │ │ │ ├── TestClassAdd8.java │ │ │ │ ├── TestClassAdd9.java │ │ │ │ ├── TestClassBase.java │ │ │ │ ├── testResource10.txt │ │ │ │ ├── testResource11.txt │ │ │ │ ├── testResource8.txt │ │ │ │ ├── testResource9.txt │ │ │ │ ├── testResourceAdd10.txt │ │ │ │ ├── testResourceAdd11.txt │ │ │ │ ├── testResourceAdd8.txt │ │ │ │ ├── testResourceAdd9.txt │ │ │ │ └── testResourceBase.txt │ │ │ │ ├── testResource10.txt │ │ │ │ ├── testResource11.txt │ │ │ │ ├── testResource8.txt │ │ │ │ ├── testResource9.txt │ │ │ │ ├── testResourceAdd10.txt │ │ │ │ ├── testResourceAdd11.txt │ │ │ │ ├── testResourceAdd8.txt │ │ │ │ ├── testResourceAdd9.txt │ │ │ │ └── testResourceBase.txt │ │ ├── nativetest.a1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── nativefile1.txt │ │ │ └── nativetest │ │ │ │ └── a1 │ │ │ │ └── Activator.java │ │ ├── nativetest.a2 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── nativefile2.txt │ │ │ └── nativetest │ │ │ │ └── a2 │ │ │ │ └── Activator.java │ │ ├── nativetest.b1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── nativefile.txt │ │ │ └── nativetest │ │ │ │ └── b1 │ │ │ │ └── Activator.java │ │ ├── nativetest.b2 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── nativefile.txt │ │ │ └── nativetest │ │ │ │ └── b2 │ │ │ │ └── Activator.java │ │ ├── nativetest.c │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── libs │ │ │ │ ├── test1 │ │ │ │ │ └── nativecode.txt │ │ │ │ ├── test2 │ │ │ │ │ └── nativecode.txt │ │ │ │ └── test3 │ │ │ │ │ └── nativecode.txt │ │ │ └── nativetest │ │ │ │ └── c │ │ │ │ └── Activator.java │ │ ├── nativetest.d │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── libs │ │ │ │ └── test1 │ │ │ │ │ └── nativecode.txt │ │ │ └── nativetest │ │ │ │ └── d │ │ │ │ └── Activator.java │ │ ├── nativetest.e │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── libs │ │ │ │ └── test1 │ │ │ │ │ └── nativecode.txt │ │ │ └── nativetest │ │ │ │ └── e │ │ │ │ └── Activator.java │ │ ├── nativetest.f │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── libs │ │ │ │ └── test1 │ │ │ │ └── nativecode.txt │ │ ├── osgi.lazystart.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── osgi │ │ │ │ └── lazystart │ │ │ │ └── a │ │ │ │ ├── ATest.java │ │ │ │ └── Activator.java │ │ ├── osgi.lazystart.b │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── osgi │ │ │ │ └── lazystart │ │ │ │ └── b │ │ │ │ ├── Activator.java │ │ │ │ ├── BTest.java │ │ │ │ └── excluded │ │ │ │ ├── a │ │ │ │ └── BAExcluded.java │ │ │ │ └── b │ │ │ │ └── BBExcluded.java │ │ ├── osgi.lazystart.c │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── osgi │ │ │ │ └── lazystart │ │ │ │ └── c │ │ │ │ ├── Activator.java │ │ │ │ ├── CTest.java │ │ │ │ └── excluded │ │ │ │ ├── a │ │ │ │ └── CAExcluded.java │ │ │ │ └── b │ │ │ │ └── CBExcluded.java │ │ ├── osgi.lazystart.d │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── osgi │ │ │ │ └── lazystart │ │ │ │ └── d │ │ │ │ ├── Activator.java │ │ │ │ └── DTest.java │ │ ├── osgi.lazystart.e │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── osgi │ │ │ │ └── lazystart │ │ │ │ └── e │ │ │ │ └── Activator.java │ │ ├── osgi.lazystart │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── osgi │ │ │ │ └── lazystart │ │ │ │ ├── LazyExclude1.java │ │ │ │ ├── LazyExclude2.java │ │ │ │ ├── LazyInclude1.java │ │ │ │ ├── LazyInclude2.java │ │ │ │ └── LazySimple.java │ │ ├── security.a.frag.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── resources │ │ │ │ ├── HostManifest_en_US.properties │ │ │ │ └── frag.a.txt │ │ ├── security.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── resources │ │ │ │ └── HostManifest.properties │ │ │ └── security │ │ │ │ └── a │ │ │ │ └── Activator.java │ │ ├── security.b │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── OSGI-INF │ │ │ │ └── permissions.perm │ │ │ └── security │ │ │ │ └── b │ │ │ │ └── Activator.java │ │ ├── storage.hooks.a │ │ │ ├── META-INF │ │ │ │ ├── MANIFEST.MF │ │ │ │ └── services │ │ │ │ │ └── org.osgi.framework.connect.FrameworkUtilHelper │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── osgi │ │ │ │ └── tests │ │ │ │ └── hooks │ │ │ │ └── framework │ │ │ │ └── storage │ │ │ │ └── a │ │ │ │ ├── TestHelper.java │ │ │ │ └── TestHookConfigurator.java │ │ ├── substitutes.a.frag │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── substitutes │ │ │ │ └── q │ │ │ │ └── AFq.java │ │ ├── substitutes.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── data │ │ │ │ └── resource1 │ │ │ └── substitutes │ │ │ │ ├── x │ │ │ │ └── Ax.java │ │ │ │ └── y │ │ │ │ └── Ay.java │ │ ├── substitutes.b.frag │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── substitutes │ │ │ │ └── q │ │ │ │ └── BFq.java │ │ ├── substitutes.b │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── substitutes │ │ │ │ ├── x │ │ │ │ └── Bx.java │ │ │ │ └── y │ │ │ │ └── By.java │ │ ├── substitutes.c │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── substitutes.d │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── substitutes.e │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── substitutes │ │ │ │ └── z │ │ │ │ └── Ez.java │ │ ├── substitutes.f │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── substitutes │ │ │ │ └── z │ │ │ │ └── Fz.java │ │ ├── substitutes.g │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── substitutes.h │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── substitutes.i │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── substitutes │ │ │ │ ├── x │ │ │ │ └── Ix.java │ │ │ │ └── y │ │ │ │ └── Iy.java │ │ ├── substitutes.j │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── substitutes │ │ │ │ ├── x │ │ │ │ └── Jx.java │ │ │ │ └── y │ │ │ │ └── Jy.java │ │ ├── substitutes.k │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── substitutes │ │ │ │ ├── x │ │ │ │ └── Kx.java │ │ │ │ └── y │ │ │ │ └── Ky.java │ │ ├── substitutes.l │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── substitutes │ │ │ │ ├── x │ │ │ │ └── Lx.java │ │ │ │ └── y │ │ │ │ └── Ly.java │ │ ├── substitutes.m │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── substitutes │ │ │ │ ├── x │ │ │ │ └── Mx.java │ │ │ │ └── y │ │ │ │ └── My.java │ │ ├── substitutes.n │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── substitutes │ │ │ │ ├── x │ │ │ │ └── Nx.java │ │ │ │ └── y │ │ │ │ └── Ny.java │ │ ├── substitutes.p │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── substitutes.q │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── test.bug235958.x │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── bug235958 │ │ │ │ └── x │ │ │ │ ├── X1.java │ │ │ │ └── internal │ │ │ │ └── Activator.java │ │ ├── test.bug235958.y │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── bug235958 │ │ │ │ ├── x │ │ │ │ └── X.java │ │ │ │ └── y │ │ │ │ ├── Y.java │ │ │ │ └── internal │ │ │ │ └── Activator.java │ │ ├── test.bug259903.a.update │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── test.bug259903.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── bug259903 │ │ │ │ └── a │ │ │ │ ├── Service1.java │ │ │ │ └── b │ │ │ │ └── Service2.java │ │ ├── test.bug259903.b │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── bug259903 │ │ │ │ └── b │ │ │ │ └── Service3.java │ │ ├── test.bug259903.c │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── bug259903 │ │ │ │ └── c │ │ │ │ └── Activator.java │ │ ├── test.bug286307 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── OSGI-INF │ │ │ │ └── permissions.perm │ │ ├── test.bug287636.a1 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── test.bug287636.a2 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── test.bug287636.b │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── test.bug287750 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── OSGI-INF │ │ │ │ └── permissions.perm │ │ │ └── test │ │ │ │ └── bug287750 │ │ │ │ └── Activator.java │ │ ├── test.bug306181a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── bug306181a │ │ │ │ └── Activator.java │ │ ├── test.bug306181b │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── component.xml │ │ │ └── test │ │ │ │ └── bug306181b │ │ │ │ └── Component.java │ │ ├── test.bug375784 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── bug375784 │ │ │ │ ├── Activator.java │ │ │ │ └── Test.java │ │ ├── test.bug412228 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── bug412228 │ │ │ │ └── Activator.java │ │ ├── test.bug438904.frag │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── bug438904 │ │ │ │ └── frag │ │ │ │ └── Test2.java │ │ ├── test.bug438904.global │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── test.bug438904.host │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── bug438904 │ │ │ │ └── host │ │ │ │ └── Test1.java │ │ ├── test.bug449484 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── test.bug471551 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── bug471551 │ │ │ │ └── Activator.java │ │ ├── test.bug490902.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── bug490902 │ │ │ │ └── a │ │ │ │ ├── A1.java │ │ │ │ └── TestLoadA1.java │ │ ├── test.bug490902.b │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── bug490902 │ │ │ │ └── b │ │ │ │ └── B1.java │ │ ├── test.dynamic.privateimport │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── dynamic │ │ │ │ └── privateimport │ │ │ │ └── Activator.java │ │ ├── test.dynamicimport │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── dynamicimport │ │ │ │ └── Activator.java │ │ ├── test.filter.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── filter │ │ │ │ └── a │ │ │ │ └── Activator.java │ │ ├── test.fragment1 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── test.fragment2 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── test.fragment3 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── test.fragment4 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── test.fragment5 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── test.link.a.client │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── link │ │ │ │ └── a │ │ │ │ └── client │ │ │ │ └── Activator.java │ │ ├── test.link.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── link │ │ │ │ └── a │ │ │ │ ├── SomeAPI.java │ │ │ │ ├── params │ │ │ │ └── AParam.java │ │ │ │ └── resource.txt │ │ ├── test.logging.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── logging │ │ │ │ └── a │ │ │ │ └── Activator.java │ │ ├── test.manifestpackage │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── manifestpackage │ │ │ │ ├── Activator.java │ │ │ │ ├── a │ │ │ │ └── A.java │ │ │ │ ├── b │ │ │ │ └── B.java │ │ │ │ ├── c │ │ │ │ └── C.java │ │ │ │ ├── d │ │ │ │ └── D.java │ │ │ │ ├── e │ │ │ │ └── E.java │ │ │ │ └── f │ │ │ │ └── F.java │ │ ├── test.protocol.handler.user │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── protocol │ │ │ │ └── handler │ │ │ │ └── user │ │ │ │ └── Activator.java │ │ ├── test.protocol.handler │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── protocol │ │ │ │ └── handler │ │ │ │ └── Activator.java │ │ ├── test.system.nls │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── systembundle_zh.properties │ │ ├── test.tccl │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── tccl │ │ │ │ └── Activator.java │ │ ├── test.uninstall.start1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── uninstall │ │ │ │ └── start1 │ │ │ │ └── Activator.java │ │ ├── test.uninstall.start2 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── test │ │ │ │ └── uninstall │ │ │ │ └── start2 │ │ │ │ └── Activator.java │ │ ├── test │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── a │ │ │ │ └── b │ │ │ │ │ └── c │ │ │ │ │ └── d │ │ │ ├── data │ │ │ │ └── resource1 │ │ │ ├── stuff │ │ │ │ └── data │ │ │ │ │ └── resource1 │ │ │ └── test1 │ │ │ │ └── Activator.java │ │ ├── test2 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── data │ │ │ │ └── resource1 │ │ │ └── stuff │ │ │ │ ├── data │ │ │ │ ├── resource1 │ │ │ │ └── resource2 │ │ │ │ └── resource2 │ │ ├── thread.locktest │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── thread │ │ │ │ └── locktest │ │ │ │ ├── ATest.java │ │ │ │ ├── Activator.java │ │ │ │ └── Class1.java │ │ ├── wrapper.hooks.a │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── osgi │ │ │ │ └── tests │ │ │ │ └── wrapper │ │ │ │ └── hooks │ │ │ │ └── a │ │ │ │ └── TestHookConfigurator.java │ │ ├── xfriends.test1 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── xfriends │ │ │ │ └── test1 │ │ │ │ ├── external │ │ │ │ └── TestFriends.java │ │ │ │ └── onlyforfriends │ │ │ │ └── TestFriends.java │ │ ├── xfriends.test2 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── xfriends │ │ │ │ └── test2 │ │ │ │ └── Activator.java │ │ └── xfriends.test3 │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ └── xfriends │ │ │ └── test3 │ │ │ └── Activator.java │ ├── forceQualifierUpdate.txt │ ├── plugin.xml │ ├── pom.xml │ ├── profile.list │ ├── src │ │ └── org │ │ │ └── eclipse │ │ │ ├── equinox │ │ │ └── log │ │ │ │ └── test │ │ │ │ ├── AllExtendedLogServiceTests.java │ │ │ │ ├── AllLogServiceTests.java │ │ │ │ ├── AllTests.java │ │ │ │ ├── ExtendedLogReaderServiceTest.java │ │ │ │ ├── ExtendedLogServiceTest.java │ │ │ │ ├── LogEquinoxTraceTest.java │ │ │ │ ├── LogPermissionCollectionTest.java │ │ │ │ ├── LogReaderServiceTest.java │ │ │ │ ├── LogServiceTest.java │ │ │ │ ├── TestListener.java │ │ │ │ └── TestListener2.java │ │ │ └── osgi │ │ │ └── tests │ │ │ ├── AutomatedTests.java │ │ │ ├── OSGiTestsActivator.java │ │ │ ├── appadmin │ │ │ ├── AllTests.java │ │ │ ├── ApplicationAdminTest.java │ │ │ ├── ApplicationRelaunchTest.java │ │ │ ├── ExitValueApp.java │ │ │ ├── FailedApp.java │ │ │ ├── RelaunchApp.java │ │ │ └── SimpleApp.java │ │ │ ├── bundles │ │ │ ├── AbstractBundleTests.java │ │ │ ├── AddDynamicImportTests.java │ │ │ ├── ArrayTest.java │ │ │ ├── BundleExceptionTests.java │ │ │ ├── BundleInstallUpdateTests.java │ │ │ ├── BundleInstaller.java │ │ │ ├── BundleNativeCodeTests.java │ │ │ ├── BundleResourceTests.java │ │ │ ├── BundleTests.java │ │ │ ├── CascadeConfigTests.java │ │ │ ├── ClassLoadingBundleTests.java │ │ │ ├── ConnectTests.java │ │ │ ├── DiscardBundleTests.java │ │ │ ├── EquinoxBundleAdaptTests.java │ │ │ ├── EventListenerTestResults.java │ │ │ ├── ExceptionMessageTest.java │ │ │ ├── ExtensionBundleTests.java │ │ │ ├── ITestRunner.java │ │ │ ├── IllegalStateExceptionTests.java │ │ │ ├── ImportJavaSEPackagesTests.java │ │ │ ├── ListenerTests.java │ │ │ ├── LoggingTests.java │ │ │ ├── MultiReleaseJarTests.java │ │ │ ├── NativeCodeBundleTests.java │ │ │ ├── PackageAdminBundleTests.java │ │ │ ├── PersistedBundleTests.java │ │ │ ├── PlatformAdminBundleTests.java │ │ │ ├── SubstituteExportsBundleTests.java │ │ │ ├── SyncEventListenerTestResults.java │ │ │ ├── SystemBundleTests.java │ │ │ ├── TestResults.java │ │ │ ├── URLHandlerTests.java │ │ │ ├── classes │ │ │ │ ├── Activator.java │ │ │ │ ├── Activator1.java │ │ │ │ ├── Activator2.java │ │ │ │ ├── Activator3.java │ │ │ │ └── ExternalClassPathActivator.java │ │ │ ├── debug.gif │ │ │ └── resources │ │ │ │ ├── 1.txt │ │ │ │ ├── 2.txt │ │ │ │ └── 3.txt │ │ │ ├── configuration │ │ │ ├── AllTests.java │ │ │ ├── EclipseStarterConfigIniTest.java │ │ │ ├── EclipseStarterConfigurationAreaTest.java │ │ │ ├── MovableConfigurationAreaTest.java │ │ │ └── ReadOnlyConfigurationAreaTest.java │ │ │ ├── container │ │ │ ├── AbstractTest.java │ │ │ ├── AllTests.java │ │ │ ├── ModuleContainerUsageTest.java │ │ │ ├── ModuleWiringTest.java │ │ │ ├── NamespaceListBuilderTest.java │ │ │ ├── NamespaceListTest.java │ │ │ ├── ResolutionReportTest.java │ │ │ ├── TestModuleContainer.java │ │ │ └── dummys │ │ │ │ ├── DummyCollisionHook.java │ │ │ │ ├── DummyContainerAdaptor.java │ │ │ │ ├── DummyDebugOptions.java │ │ │ │ ├── DummyModule.java │ │ │ │ ├── DummyModuleDatabase.java │ │ │ │ ├── DummyResolverHook.java │ │ │ │ ├── DummyResolverHookFactory.java │ │ │ │ ├── DummySystemModule.java │ │ │ │ └── UnresolvedProviderEntryBuilder.java │ │ │ ├── debugoptions │ │ │ └── DebugOptionsTestCase.java │ │ │ ├── eclipseadaptor │ │ │ ├── AllTests.java │ │ │ ├── EnvironmentInfoTest.java │ │ │ ├── FilePathTest.java │ │ │ └── LocaleTransformationTest.java │ │ │ ├── eventmgr │ │ │ └── EventManagerTests.java │ │ │ ├── filter │ │ │ └── FilterTests.java │ │ │ ├── hooks │ │ │ └── framework │ │ │ │ ├── AbstractFrameworkHookTests.java │ │ │ │ ├── ActivatorOrderTest.java │ │ │ │ ├── AllFrameworkHookTests.java │ │ │ │ ├── BundleFileWrapperFactoryHookTests.java │ │ │ │ ├── ClassLoaderHookTests.java │ │ │ │ ├── ContextFinderTests.java │ │ │ │ ├── DevClassPathDuplicateTests.java │ │ │ │ ├── DevClassPathWithExtensionTests.java │ │ │ │ ├── EmbeddedEquinoxWithURLInClassLoadTests.java │ │ │ │ └── StorageHookTests.java │ │ │ ├── internal │ │ │ └── plugins │ │ │ │ └── InstallTests.java │ │ │ ├── listeners │ │ │ └── ExceptionHandlerTests.java │ │ │ ├── misc │ │ │ └── MiscTests.java │ │ │ ├── perf │ │ │ ├── AllTests.java │ │ │ ├── BasePerformanceTest.java │ │ │ ├── CaseMapPerformanceTest.java │ │ │ ├── StatePerformanceTest.java │ │ │ └── StateUsesPerformanceTest.java │ │ │ ├── permissions │ │ │ ├── AdminPermissionTests.java │ │ │ ├── AllTests.java │ │ │ ├── PackagePermissionTests.java │ │ │ ├── PermissionTests.java │ │ │ └── ServicePermissionTests.java │ │ │ ├── resolver │ │ │ ├── TestAttributes_001.java │ │ │ ├── TestBSN_001.java │ │ │ ├── TestCycle_001.java │ │ │ ├── TestCycle_002.java │ │ │ ├── TestCycle_003.java │ │ │ ├── TestCycle_004.java │ │ │ ├── TestCycle_005.java │ │ │ ├── TestCycle_006.java │ │ │ ├── TestDynamic_001.java │ │ │ ├── TestDynamic_002.java │ │ │ ├── TestDynamic_003.java │ │ │ ├── TestDynamic_004.java │ │ │ ├── TestDynamic_005.java │ │ │ ├── TestDynamic_006.java │ │ │ ├── TestGenerated_001.java │ │ │ ├── TestGrouping_001.java │ │ │ ├── TestGrouping_002.java │ │ │ ├── TestGrouping_003.java │ │ │ ├── TestGrouping_006.java │ │ │ ├── TestGrouping_008.java │ │ │ ├── TestOptional_001.java │ │ │ ├── TestOptional_002.java │ │ │ ├── TestPropagation_001.java │ │ │ ├── TestPropagation_003.java │ │ │ ├── TestRFC79_001.java │ │ │ ├── TestRFC79_002.java │ │ │ ├── TestRFC79_003.java │ │ │ ├── TestRFC79_004.java │ │ │ ├── TestRFC79_005.java │ │ │ ├── TestRFC79_006.java │ │ │ ├── TestRFC79_007.java │ │ │ ├── TestVersion_001.java │ │ │ ├── TestVersion_002.java │ │ │ └── TestVersion_003.java │ │ │ ├── resource │ │ │ ├── AbstractResourceTest.java │ │ │ ├── AllTests.java │ │ │ ├── BasicTest.java │ │ │ └── ResolverHookTests.java │ │ │ ├── security │ │ │ ├── BaseSecurityTest.java │ │ │ ├── BundleToJarInputStreamTest.java │ │ │ ├── KeyStoreTrustEngineTest.java │ │ │ ├── OSGiAPICertificateTest.java │ │ │ ├── SecurityTestSuite.java │ │ │ └── SignedBundleTest.java │ │ │ ├── securityadmin │ │ │ ├── AllSecurityAdminTests.java │ │ │ ├── SecurityAdminUnitTests.java │ │ │ └── SecurityManagerTests.java │ │ │ ├── serviceregistry │ │ │ ├── AllTests.java │ │ │ ├── ServiceExceptionTests.java │ │ │ ├── ServiceHookTests.java │ │ │ ├── ServiceRegistryTests.java │ │ │ └── ServiceTrackerTests.java │ │ │ ├── services │ │ │ ├── datalocation │ │ │ │ ├── AllTests.java │ │ │ │ ├── BasicLocationTests.java │ │ │ │ ├── FileManagerTests.java │ │ │ │ ├── LocationAreaSessionTest.java │ │ │ │ ├── SimpleTests.java │ │ │ │ └── StreamManagerTests.java │ │ │ └── resolver │ │ │ │ ├── AbstractStateTest.java │ │ │ │ ├── AllTests.java │ │ │ │ ├── DevModeTest.java │ │ │ │ ├── DisabledInfoTest.java │ │ │ │ ├── GenericCapabilityTest.java │ │ │ │ ├── NewResolverTest.java │ │ │ │ ├── OSGiCapabilityTest.java │ │ │ │ ├── PlatformAdminTest.java │ │ │ │ ├── R4ResolverTest.java │ │ │ │ ├── StateComparisonTest.java │ │ │ │ ├── StateCycleTest.java │ │ │ │ ├── StateResolverTest.java │ │ │ │ ├── SubstitutableExportsTest.java │ │ │ │ ├── VersionRangeTests.java │ │ │ │ └── XFriendsInternalResolverTest.java │ │ │ ├── url │ │ │ ├── AllTests.java │ │ │ └── BundleURLConnectionTest.java │ │ │ └── util │ │ │ ├── AllTests.java │ │ │ ├── BidiTextProcessorTestCase.java │ │ │ ├── LatinTextProcessorTestCase.java │ │ │ ├── ManifestElementTestCase.java │ │ │ ├── MapDictionary.java │ │ │ ├── NLSTestCase.java │ │ │ ├── ObjectPoolTestCase.java │ │ │ ├── StorageUtilTestCase.java │ │ │ ├── TestCaseinsensitiveMap.java │ │ │ ├── TextProcessorSessionTest.java │ │ │ ├── TextProcessorTestCase.java │ │ │ └── nls │ │ │ ├── messages_latin1.properties │ │ │ └── messages_utf8.properties │ ├── test.xml │ └── test_files │ │ ├── configuration │ │ ├── bundle01 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ ├── bundle02 │ │ │ └── plugin.xml │ │ └── bundle03 │ │ │ └── META-INF │ │ │ └── MANIFEST.MF │ │ ├── containerTests │ │ ├── b1_v1.MF │ │ ├── b1_v2.MF │ │ ├── b3_v1.MF │ │ ├── bad.native.code.MF │ │ ├── big.state │ │ ├── bug457118.a.MF │ │ ├── bug457118.a2.MF │ │ ├── bug457118.b.MF │ │ ├── bug457118.b2.MF │ │ ├── bug457118.c.MF │ │ ├── bug457118.c2.MF │ │ ├── bug457118.d.MF │ │ ├── bug457118.d2.MF │ │ ├── bug457118.e.MF │ │ ├── bug483849.frag.MF │ │ ├── bug483849.host.MF │ │ ├── bug483849.importer.MF │ │ ├── c1_v1.MF │ │ ├── c1_v2.MF │ │ ├── c2_v1.MF │ │ ├── c3_v1.MF │ │ ├── c4_v1.MF │ │ ├── c5_v1.MF │ │ ├── c6_v1.MF │ │ ├── c6_v100.MF │ │ ├── c6_v110.MF │ │ ├── c6_v120.MF │ │ ├── c6_v130.MF │ │ ├── c6_v140.MF │ │ ├── c6_v150.MF │ │ ├── c6_v160.MF │ │ ├── c6_v170.MF │ │ ├── c6_v180.MF │ │ ├── c7_v1.MF │ │ ├── compatOptional1.MF │ │ ├── compatOptional2.MF │ │ ├── compatOptional3.MF │ │ ├── compatProvidePackage1.MF │ │ ├── compatReprovide1.MF │ │ ├── compatReprovide2.MF │ │ ├── compatReprovide3.MF │ │ ├── compatSingleton1.MF │ │ ├── compatSingleton2.MF │ │ ├── compatSingleton3.MF │ │ ├── dynamic1.frag_v1.MF │ │ ├── dynamic1_v1.MF │ │ ├── dynamic2_v1.MF │ │ ├── dynamic3.frag_v1.MF │ │ ├── dynamic3_v1.MF │ │ ├── ee1_v1.MF │ │ ├── ee2_v1.MF │ │ ├── ee3_v1.MF │ │ ├── f1_v1.MF │ │ ├── f2_v1.MF │ │ ├── h1_v1.MF │ │ ├── h1_v2.MF │ │ ├── h2_v1.MF │ │ ├── javax.inject_1.0.0.MF │ │ ├── lazy1_v1.MF │ │ ├── org.apache.commons.codec_1.9.0.v20170208-1614.MF │ │ ├── org.apache.commons.logging_1.1.1.v201101211721.MF │ │ ├── org.apache.httpcomponents.httpclient_4.3.6.v201511171540.MF │ │ ├── org.apache.httpcomponents.httpclient_4.5.2.v20170208-1614.MF │ │ ├── org.apache.httpcomponents.httpclient_4.5.2.v20170210-0925.MF │ │ ├── org.apache.httpcomponents.httpcore_4.3.3.v201411290715.MF │ │ ├── org.apache.httpcomponents.httpcore_4.4.4.v20161115-1643.MF │ │ ├── org.apache.httpcomponents.httpcore_4.4.6.v20170210-0925.MF │ │ ├── org.eclipse.aether.api_1.0.1.v20141111.MF │ │ ├── org.eclipse.aether.spi_1.0.1.v20141111.MF │ │ ├── org.eclipse.aether.transport.http_1.0.1.v20141111.MF │ │ ├── org.eclipse.aether.util_1.0.1.v20141111.MF │ │ ├── p5_v100.MF │ │ ├── p5_v101.MF │ │ ├── p5_v110.MF │ │ ├── p5_v111.MF │ │ ├── p6_v100.MF │ │ ├── p6_v110.MF │ │ ├── p7_v100.MF │ │ ├── p7_v110.MF │ │ ├── platformFilter1_v1.MF │ │ ├── require.b1.MF │ │ ├── require.b2.MF │ │ ├── require.b3.MF │ │ ├── require.b4.MF │ │ ├── resolution.report.a.MF │ │ ├── resolution.report.a.v1.MF │ │ ├── resolution.report.b.MF │ │ ├── resolution.report.c.MF │ │ ├── resolution.report.d.MF │ │ ├── resolution.report.e.MF │ │ ├── resolution.report.f.MF │ │ ├── resolution.report.g.MF │ │ ├── sdk202509.state │ │ ├── set1 │ │ │ ├── 0_org.eclipse.osgi_3.18.500.v20230801-1826.MF │ │ │ ├── 23_com.google.gson_2.10.1.v20230109-0753.MF │ │ │ ├── 24_com.google.gson_2.9.1.v20220915-1632.MF │ │ │ ├── 26_com.google.guava_32.1.2.jre.MF │ │ │ ├── 27_com.google.guava_30.1.0.v20221112-0806.MF │ │ │ ├── 28_com.google.guava_27.1.0.v20221112-0806.MF │ │ │ ├── 29_com.google.guava.failureaccess_1.0.1.MF │ │ │ ├── 484_org.eclipse.lsp4j_0.21.1.v20230829-0012.MF │ │ │ ├── 485_org.eclipse.lsp4j_0.19.0.v20221118-0359.MF │ │ │ ├── 486_org.eclipse.lsp4j.jsonrpc_0.21.1.v20230829-0012.MF │ │ │ ├── 487_org.eclipse.lsp4j.jsonrpc_0.19.0.v20221118-0359.MF │ │ │ └── 730_org.eclipse.xtext.xbase.lib_2.29.0.v20221121-0915.MF │ │ ├── set2 │ │ │ ├── 0_org.eclipse.osgi_3.18.500.v20230801-1826.MF │ │ │ ├── 10_pde.MF │ │ │ ├── 11_bndlib.MF │ │ │ ├── 1_repository.MF │ │ │ ├── 3_libg.MF │ │ │ ├── 4_osgi_repository.MF │ │ │ ├── 5_osgi_function.MF │ │ │ ├── 6_osgi_promise.MF │ │ │ ├── 7_util.MF │ │ │ ├── 8_slf4j.MF │ │ │ └── 9_osgi_coordinator.MF │ │ ├── set3 │ │ │ ├── 0_org.eclipse.osgi_3.18.500.v20230801-1826.MF │ │ │ ├── 1_libg.MF │ │ │ ├── 2_util.MF │ │ │ └── 3_bndlib.MF │ │ ├── singleton1_v1.MF │ │ ├── singleton1_v2.MF │ │ ├── singleton1_v3.MF │ │ ├── singleton2_v1.MF │ │ ├── singleton2_v2.MF │ │ ├── singleton2_v3.MF │ │ ├── sub.a.MF │ │ ├── sub.b.MF │ │ ├── sub.c.MF │ │ ├── sub.d.MF │ │ ├── sub.e.MF │ │ ├── sub.f.MF │ │ ├── sub.g.MF │ │ ├── sub.h.MF │ │ ├── sub.i.MF │ │ ├── sub.j.MF │ │ ├── sub.k.MF │ │ ├── sub.l.MF │ │ ├── sub.m.MF │ │ ├── sub.n.MF │ │ ├── sub.n.static.MF │ │ ├── sub1_v1.MF │ │ ├── sub1_v2.MF │ │ ├── sub2_v1.MF │ │ ├── system.bundle.MF │ │ ├── uses.a.MF │ │ ├── uses.b.MF │ │ ├── uses.c.MF │ │ ├── uses.c.dynamic.MF │ │ ├── uses.d.MF │ │ ├── uses.e.MF │ │ ├── uses.f.MF │ │ ├── uses.g.MF │ │ ├── uses.h.MF │ │ ├── uses.h.frag.MF │ │ ├── uses.i.MF │ │ ├── uses.j.MF │ │ ├── uses.j.dynamic.MF │ │ ├── uses.k.importer.MF │ │ ├── uses.k.reqCap.MF │ │ ├── uses.k.requirer.MF │ │ ├── uses.l.MF │ │ ├── uses.m.conflict1.MF │ │ ├── uses.m.conflict2.MF │ │ ├── uses.n1.MF │ │ ├── uses.n2.MF │ │ ├── uses.n2.frag.MF │ │ └── uses.n3.MF │ │ ├── devCPTests │ │ ├── devCP │ │ │ └── tb1 │ │ │ │ └── resource.txt │ │ └── tb1 │ │ │ └── META-INF │ │ │ └── MANIFEST.MF │ │ ├── genericCapability │ │ ├── c1.equinox.MF │ │ ├── c1.equinox.name.MF │ │ ├── c1.osgi.MF │ │ ├── c1.osgi.frag.MF │ │ ├── c2.equinox.MF │ │ ├── c2.equinox.name.MF │ │ ├── c2.osgi.MF │ │ ├── c3.equinox.MF │ │ ├── c3.equinox.name.MF │ │ ├── c3.osgi.MF │ │ ├── c4.v100.osgi.MF │ │ ├── c4.v110.osgi.MF │ │ ├── c4.v120.osgi.MF │ │ ├── c4.v130.osgi.MF │ │ ├── c5.osgi.MF │ │ ├── c6.v100.osgi.MF │ │ ├── c6.v110.osgi.MF │ │ ├── c6.v120.osgi.MF │ │ ├── c6.v130.osgi.MF │ │ ├── c6.v140.osgi.MF │ │ ├── c6.v150.osgi.MF │ │ ├── c6.v160.osgi.MF │ │ ├── p1.equinox.MF │ │ ├── p1.osgi.MF │ │ ├── p1.osgi.frag.MF │ │ ├── p1.osgi.name.MF │ │ ├── p2.equinox.MF │ │ ├── p2.osgi.MF │ │ ├── p2.osgi.name.MF │ │ ├── p3.equinox.MF │ │ ├── p3.osgi.MF │ │ ├── p3.osgi.name.MF │ │ ├── p4.osgi.MF │ │ ├── p5.v100.osgi.MF │ │ ├── p5.v101.osgi.MF │ │ ├── p5.v110.osgi.MF │ │ ├── p6.v100.osgi.MF │ │ ├── p6.v110.osgi.MF │ │ ├── p7.v100.osgi.MF │ │ └── p7.v110.osgi.MF │ │ ├── internal │ │ └── plugins │ │ │ ├── appAdminTests │ │ │ └── appadmin.test01 │ │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ │ └── plugin.xml │ │ │ └── installTests │ │ │ ├── bundle 01 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── bundle02_1.0.0 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── bundle03 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── bundle04 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── plugin.xml │ │ │ ├── bundle05 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── plugin.xml │ │ │ ├── bundle06 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── plugin.xml │ │ │ ├── bundle07 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── bundle07b │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── bundle08 │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── plugin.xml │ │ │ ├── bundle08b │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── plugin.xml │ │ │ ├── bundle09 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── bundle10 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── bundle11 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── bundle12 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── bundle13 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── bundle14 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── bundle15 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── bundle16 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── bundle17 │ │ │ └── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── bundle18 │ │ │ └── META-INF │ │ │ └── MANIFEST.MF │ │ ├── platformAdmin │ │ └── b1 │ │ │ └── META-INF │ │ │ └── MANIFEST.MF │ │ ├── resolverTests │ │ ├── c1.MF │ │ ├── p1.MF │ │ ├── p2.MF │ │ ├── r1.MF │ │ └── r2.MF │ │ ├── resourcetests │ │ └── bundles │ │ │ ├── file.txt │ │ │ ├── test │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ ├── file1.txt │ │ │ ├── file2.txt │ │ │ ├── folder │ │ │ │ ├── file1.txt │ │ │ │ ├── file2.txt │ │ │ │ ├── paren( │ │ │ │ ├── paren(.txt │ │ │ │ ├── paren) │ │ │ │ └── paren).txt │ │ │ └── plugin.xml │ │ │ └── testout │ │ │ └── file.txt │ │ ├── security │ │ ├── bundles │ │ │ ├── README │ │ │ ├── SHA256withRSA.jar │ │ │ ├── SHA384withRSA.jar │ │ │ ├── SHA512withRSA.jar │ │ │ ├── bundleWithNonAsciiCharsFilename.jar │ │ │ ├── multiply_signed.jar │ │ │ ├── signed.jar │ │ │ ├── signedJava16.jar │ │ │ ├── signed_tsa.jar │ │ │ ├── signed_with_corrupt.jar │ │ │ ├── signed_with_metadata.jar │ │ │ ├── signed_with_metadata_added.jar │ │ │ ├── signed_with_metadata_corrupt.jar │ │ │ ├── signed_with_metadata_removed.jar │ │ │ ├── signed_with_missing_digest.jar │ │ │ ├── signed_with_sf_corrupted.jar │ │ │ ├── test.bug252098.jar │ │ │ └── unsigned.jar │ │ ├── eclipse.jks │ │ ├── keystore.jks │ │ ├── leafkeys.jks │ │ └── pkcs12 │ │ │ ├── README │ │ │ ├── ca1_leafa.p12 │ │ │ ├── ca1_leafb.p12 │ │ │ ├── ca1_ou.p12 │ │ │ ├── ca1_root.p12 │ │ │ ├── ca2_leafa.p12 │ │ │ ├── ca2_leafb.p12 │ │ │ ├── ca2_ou.p12 │ │ │ └── ca2_root.p12 │ │ └── wiringTests │ │ └── bundles │ │ ├── resource.tb1 │ │ └── META-INF │ │ │ └── MANIFEST.MF │ │ ├── resource.tb2 │ │ └── META-INF │ │ │ └── MANIFEST.MF │ │ ├── resource.tb3 │ │ └── META-INF │ │ │ └── MANIFEST.MF │ │ ├── resource.tb4 │ │ └── META-INF │ │ │ └── MANIFEST.MF │ │ ├── resource.tb5 │ │ └── META-INF │ │ │ └── MANIFEST.MF │ │ ├── resource.tf1 │ │ └── META-INF │ │ │ └── MANIFEST.MF │ │ ├── resource.tf2 │ │ └── META-INF │ │ │ └── MANIFEST.MF │ │ ├── singleton.tb1v1 │ │ └── META-INF │ │ │ └── MANIFEST.MF │ │ └── singleton.tb1v2 │ │ └── META-INF │ │ └── MANIFEST.MF ├── org.eclipse.osgi.util │ ├── .classpath │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.jdt.core.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── about_files │ │ └── LICENSE-2.0.txt │ ├── build.properties │ ├── forceQualifierUpdate.txt │ └── plugin.properties └── org.eclipse.osgi │ ├── .classpath │ ├── .classpath.osgisource │ ├── .gitignore │ ├── .options │ ├── .project │ ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.core.runtime.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.jdt.ui.prefs │ ├── org.eclipse.pde.api.tools.prefs │ └── org.eclipse.pde.prefs │ ├── CDC-1.0_Foundation-1.0.profile │ ├── CDC-1.1_Foundation-1.1.profile │ ├── J2SE-1.2.profile │ ├── J2SE-1.3.profile │ ├── J2SE-1.4.profile │ ├── J2SE-1.5.profile │ ├── JRE-1.1.profile │ ├── JavaSE-1.6.profile │ ├── JavaSE-1.7.profile │ ├── JavaSE-1.8.profile │ ├── JavaSE-9.profile │ ├── JavaSE_compact1-1.8.profile │ ├── JavaSE_compact2-1.8.profile │ ├── JavaSE_compact3-1.8.profile │ ├── META-INF │ ├── MANIFEST.MF │ ├── native-image │ │ ├── native-image.properties │ │ ├── proxy-config.json │ │ ├── reflect-config.json │ │ └── resource-config.json │ └── services │ │ ├── org.eclipse.equinox.plurl.Plurl │ │ ├── org.osgi.framework.connect.ConnectFrameworkFactory │ │ └── org.osgi.framework.launch.FrameworkFactory │ ├── OSGi_Minimum-1.0.profile │ ├── OSGi_Minimum-1.1.profile │ ├── OSGi_Minimum-1.2.profile │ ├── about.html │ ├── bnd.bnd │ ├── build.properties │ ├── container │ ├── src │ │ ├── about_files │ │ │ └── LICENSE-2.0.txt │ │ └── org │ │ │ └── eclipse │ │ │ ├── core │ │ │ └── runtime │ │ │ │ ├── adaptor │ │ │ │ ├── EclipseStarter.java │ │ │ │ └── package.html │ │ │ │ └── internal │ │ │ │ └── adaptor │ │ │ │ ├── ConsoleManager.java │ │ │ │ ├── DefaultStartupMonitor.java │ │ │ │ └── EclipseAppLauncher.java │ │ │ ├── equinox │ │ │ └── plurl │ │ │ │ ├── Plurl.java │ │ │ │ ├── PlurlContentHandlerFactory.java │ │ │ │ ├── PlurlFactory.java │ │ │ │ ├── PlurlStreamHandler.java │ │ │ │ ├── PlurlStreamHandlerBase.java │ │ │ │ ├── PlurlStreamHandlerFactory.java │ │ │ │ └── impl │ │ │ │ ├── CallStack.java │ │ │ │ ├── PlurlImpl.java │ │ │ │ ├── SecurityManagerCallStack.java │ │ │ │ ├── StackWalkerCallStack.java │ │ │ │ └── URLToHandler.java │ │ │ └── osgi │ │ │ ├── container │ │ │ ├── Module.java │ │ │ ├── ModuleCapability.java │ │ │ ├── ModuleCollisionHook.java │ │ │ ├── ModuleContainer.java │ │ │ ├── ModuleContainerAdaptor.java │ │ │ ├── ModuleDatabase.java │ │ │ ├── ModuleLoader.java │ │ │ ├── ModuleRequirement.java │ │ │ ├── ModuleResolutionReport.java │ │ │ ├── ModuleResolver.java │ │ │ ├── ModuleRevision.java │ │ │ ├── ModuleRevisionBuilder.java │ │ │ ├── ModuleRevisions.java │ │ │ ├── ModuleWire.java │ │ │ ├── ModuleWiring.java │ │ │ ├── SystemModule.java │ │ │ ├── builders │ │ │ │ └── OSGiManifestBuilderFactory.java │ │ │ └── namespaces │ │ │ │ ├── EclipsePlatformNamespace.java │ │ │ │ ├── EquinoxFragmentNamespace.java │ │ │ │ └── EquinoxModuleDataNamespace.java │ │ │ ├── framework │ │ │ └── util │ │ │ │ ├── ArrayMap.java │ │ │ │ ├── CaseInsensitiveDictionaryMap.java │ │ │ │ ├── FilePath.java │ │ │ │ ├── Headers.java │ │ │ │ ├── KeyedElement.java │ │ │ │ ├── ObjectPool.java │ │ │ │ ├── SecureAction.java │ │ │ │ └── ThreadInfoReport.java │ │ │ ├── internal │ │ │ ├── cds │ │ │ │ ├── CDSBundleEntry.java │ │ │ │ ├── CDSBundleFile.java │ │ │ │ ├── CDSHookConfigurator.java │ │ │ │ └── CDSHookImpls.java │ │ │ ├── connect │ │ │ │ ├── ConnectBundleFile.java │ │ │ │ ├── ConnectHookConfigurator.java │ │ │ │ ├── ConnectInputStream.java │ │ │ │ └── DelegatingConnectClassLoader.java │ │ │ ├── container │ │ │ │ ├── AtomicLazyInitializer.java │ │ │ │ ├── Capabilities.java │ │ │ │ ├── ComputeNodeOrder.java │ │ │ │ ├── EquinoxReentrantLock.java │ │ │ │ ├── InternalUtils.java │ │ │ │ ├── KeyBasedLockStore.java │ │ │ │ ├── LockSet.java │ │ │ │ └── NamespaceList.java │ │ │ ├── debug │ │ │ │ ├── Debug.java │ │ │ │ ├── EclipseDebugTrace.java │ │ │ │ ├── FrameworkDebugOptions.java │ │ │ │ └── FrameworkDebugTraceEntry.java │ │ │ ├── framework │ │ │ │ ├── AliasMapper.java │ │ │ │ ├── BundleContextImpl.java │ │ │ │ ├── ContextFinder.java │ │ │ │ ├── DTOBuilder.java │ │ │ │ ├── EquinoxBundle.java │ │ │ │ ├── EquinoxConfiguration.java │ │ │ │ ├── EquinoxContainer.java │ │ │ │ ├── EquinoxContainerAdaptor.java │ │ │ │ ├── EquinoxEventPublisher.java │ │ │ │ ├── FilterImpl.java │ │ │ │ ├── OSGiFrameworkHooks.java │ │ │ │ ├── StorageSaver.java │ │ │ │ ├── SystemBundleActivator.java │ │ │ │ ├── XMLParsingServiceFactory.java │ │ │ │ ├── legacy │ │ │ │ │ ├── PackageAdminImpl.java │ │ │ │ │ └── StartLevelImpl.java │ │ │ │ ├── osname.aliases │ │ │ │ └── processor.aliases │ │ │ ├── hookregistry │ │ │ │ ├── ActivatorHookFactory.java │ │ │ │ ├── BundleFileWrapperFactoryHook.java │ │ │ │ ├── ClassLoaderHook.java │ │ │ │ ├── HookConfigurator.java │ │ │ │ ├── HookRegistry.java │ │ │ │ └── StorageHookFactory.java │ │ │ ├── hooks │ │ │ │ ├── DevClassLoadingHook.java │ │ │ │ └── EclipseLazyStarter.java │ │ │ ├── loader │ │ │ │ ├── BundleLoader.java │ │ │ │ ├── BundleLoaderSources.java │ │ │ │ ├── EquinoxClassLoader.java │ │ │ │ ├── FragmentLoader.java │ │ │ │ ├── ModuleClassLoader.java │ │ │ │ ├── SystemBundleLoader.java │ │ │ │ ├── buddy │ │ │ │ │ ├── DependentPolicy.java │ │ │ │ │ ├── GlobalPolicy.java │ │ │ │ │ ├── IBuddyPolicy.java │ │ │ │ │ ├── PolicyHandler.java │ │ │ │ │ ├── RegisteredPolicy.java │ │ │ │ │ └── SystemPolicy.java │ │ │ │ ├── classpath │ │ │ │ │ ├── ClasspathEntry.java │ │ │ │ │ ├── ClasspathManager.java │ │ │ │ │ ├── FragmentClasspath.java │ │ │ │ │ ├── ManifestPackageAttributes.java │ │ │ │ │ └── TitleVersionVendor.java │ │ │ │ └── sources │ │ │ │ │ ├── FilteredSourcePackage.java │ │ │ │ │ ├── MultiSourcePackage.java │ │ │ │ │ ├── NullPackageSource.java │ │ │ │ │ ├── PackageSource.java │ │ │ │ │ └── SingleSourcePackage.java │ │ │ ├── location │ │ │ │ ├── BasicLocation.java │ │ │ │ └── EquinoxLocations.java │ │ │ ├── log │ │ │ │ ├── Arguments.java │ │ │ │ ├── ConfigAdminListener.java │ │ │ │ ├── EquinoxLogFactory.java │ │ │ │ ├── EquinoxLogServices.java │ │ │ │ ├── EquinoxLogWriter.java │ │ │ │ ├── EventAdminAdapter.java │ │ │ │ ├── EventAdminLogListener.java │ │ │ │ ├── ExtendedLogEntryImpl.java │ │ │ │ ├── ExtendedLogReaderServiceFactory.java │ │ │ │ ├── ExtendedLogReaderServiceImpl.java │ │ │ │ ├── ExtendedLogServiceFactory.java │ │ │ │ ├── ExtendedLogServiceImpl.java │ │ │ │ ├── FormatterLoggerImpl.java │ │ │ │ ├── LogServiceManager.java │ │ │ │ ├── LoggerContextTargetMap.java │ │ │ │ └── LoggerImpl.java │ │ │ ├── permadmin │ │ │ │ ├── BundlePermissions.java │ │ │ │ ├── EquinoxSecurityManager.java │ │ │ │ ├── EvaluationCacheKey.java │ │ │ │ ├── PermissionAdminTable.java │ │ │ │ ├── PermissionInfoCollection.java │ │ │ │ ├── PermissionsHash.java │ │ │ │ ├── SecurityAdmin.java │ │ │ │ ├── SecurityRow.java │ │ │ │ ├── SecurityRowSnapShot.java │ │ │ │ ├── SecurityTable.java │ │ │ │ ├── SecurityTableUpdate.java │ │ │ │ └── implied.permissions │ │ │ ├── provisional │ │ │ │ ├── service │ │ │ │ │ └── security │ │ │ │ │ │ ├── AuthorizationEngine.java │ │ │ │ │ │ ├── AuthorizationEvent.java │ │ │ │ │ │ ├── AuthorizationListener.java │ │ │ │ │ │ └── AuthorizationStatus.java │ │ │ │ └── verifier │ │ │ │ │ ├── CertificateChain.java │ │ │ │ │ ├── CertificateTrustAuthority.java │ │ │ │ │ ├── CertificateVerifier.java │ │ │ │ │ └── CertificateVerifierFactory.java │ │ │ ├── service │ │ │ │ └── security │ │ │ │ │ └── KeyStoreTrustEngine.java │ │ │ ├── serviceregistry │ │ │ │ ├── FilteredServiceListener.java │ │ │ │ ├── HookContext.java │ │ │ │ ├── ModifiedServiceEvent.java │ │ │ │ ├── PrototypeServiceFactoryUse.java │ │ │ │ ├── ServiceConsumer.java │ │ │ │ ├── ServiceFactoryUse.java │ │ │ │ ├── ServiceObjectsImpl.java │ │ │ │ ├── ServiceProperties.java │ │ │ │ ├── ServiceReferenceImpl.java │ │ │ │ ├── ServiceRegistrationImpl.java │ │ │ │ ├── ServiceRegistry.java │ │ │ │ ├── ServiceUse.java │ │ │ │ ├── ShrinkableCollection.java │ │ │ │ ├── ShrinkableEntrySetValueCollection.java │ │ │ │ └── ShrinkableValueCollectionMap.java │ │ │ ├── signedcontent │ │ │ │ ├── BundleToJarInputStream.java │ │ │ │ ├── SignedBundleHook.java │ │ │ │ ├── SignedContentConstants.java │ │ │ │ ├── SignedContentFromBundleFile.java │ │ │ │ ├── SignedContentMessages.java │ │ │ │ ├── SignedContentMessages.properties │ │ │ │ └── TrustEngineListener.java │ │ │ ├── url │ │ │ │ ├── ContentHandlerFactoryImpl.java │ │ │ │ ├── ContentHandlerProxy.java │ │ │ │ ├── NullURLStreamHandlerService.java │ │ │ │ ├── URLStreamHandlerFactoryImpl.java │ │ │ │ ├── URLStreamHandlerProxy.java │ │ │ │ └── URLStreamHandlerSetter.java │ │ │ └── weaving │ │ │ │ ├── DynamicImportList.java │ │ │ │ ├── WeavingHookConfigurator.java │ │ │ │ └── WovenClassImpl.java │ │ │ ├── launch │ │ │ ├── Equinox.java │ │ │ ├── EquinoxFactory.java │ │ │ └── package.html │ │ │ ├── service │ │ │ ├── pluginconversion │ │ │ │ ├── PluginConversionException.java │ │ │ │ └── PluginConverter.java │ │ │ ├── resolver │ │ │ │ ├── BaseDescription.java │ │ │ │ ├── BundleDelta.java │ │ │ │ ├── BundleDescription.java │ │ │ │ ├── BundleSpecification.java │ │ │ │ ├── DisabledInfo.java │ │ │ │ ├── ExportPackageDescription.java │ │ │ │ ├── GenericDescription.java │ │ │ │ ├── GenericSpecification.java │ │ │ │ ├── HostSpecification.java │ │ │ │ ├── ImportPackageSpecification.java │ │ │ │ ├── NativeCodeDescription.java │ │ │ │ ├── NativeCodeSpecification.java │ │ │ │ ├── PlatformAdmin.java │ │ │ │ ├── Resolver.java │ │ │ │ ├── ResolverError.java │ │ │ │ ├── ResolverHookException.java │ │ │ │ ├── State.java │ │ │ │ ├── StateDelta.java │ │ │ │ ├── StateHelper.java │ │ │ │ ├── StateObjectFactory.java │ │ │ │ ├── StateWire.java │ │ │ │ ├── VersionConstraint.java │ │ │ │ ├── VersionRange.java │ │ │ │ └── package.html │ │ │ └── security │ │ │ │ ├── TrustEngine.java │ │ │ │ └── package.html │ │ │ ├── signedcontent │ │ │ ├── InvalidContentException.java │ │ │ ├── SignedContent.java │ │ │ ├── SignedContentEntry.java │ │ │ ├── SignedContentFactory.java │ │ │ ├── SignerInfo.java │ │ │ └── package.html │ │ │ ├── storage │ │ │ ├── BundleInfo.java │ │ │ ├── BundleLocalizationImpl.java │ │ │ ├── ContentProvider.java │ │ │ ├── FrameworkExtensionInstaller.java │ │ │ ├── ManifestLocalization.java │ │ │ ├── NativeCodeFinder.java │ │ │ ├── PermissionData.java │ │ │ ├── Storage.java │ │ │ ├── StorageUtil.java │ │ │ ├── SystemBundleFile.java │ │ │ ├── bundlefile │ │ │ │ ├── BundleEntry.java │ │ │ │ ├── BundleFile.java │ │ │ │ ├── BundleFileWrapper.java │ │ │ │ ├── BundleFileWrapperChain.java │ │ │ │ ├── CloseableBundleFile.java │ │ │ │ ├── DirBundleFile.java │ │ │ │ ├── DirZipBundleEntry.java │ │ │ │ ├── FileBundleEntry.java │ │ │ │ ├── MRUBundleFileList.java │ │ │ │ ├── NestedDirBundleFile.java │ │ │ │ ├── ZipBundleEntry.java │ │ │ │ └── ZipBundleFile.java │ │ │ └── url │ │ │ │ ├── BundleResourceHandler.java │ │ │ │ ├── BundleURLConnection.java │ │ │ │ ├── BundleURLConverter.java │ │ │ │ ├── bundleentry │ │ │ │ └── Handler.java │ │ │ │ ├── bundleresource │ │ │ │ └── Handler.java │ │ │ │ └── reference │ │ │ │ ├── Handler.java │ │ │ │ ├── ReferenceInputStream.java │ │ │ │ └── ReferenceURLConnection.java │ │ │ └── util │ │ │ ├── TextProcessor.java │ │ │ └── package.html │ └── src_test │ │ └── org │ │ └── eclipse │ │ └── equinox │ │ └── plurl │ │ └── test │ │ ├── MultiplePlurlInstallWithParentsTests.java │ │ ├── PlurlContentHandlerFactoryTest.java │ │ ├── PlurlStreamHandlerFactoryTest.java │ │ ├── PlurlTestHandlers.java │ │ └── debug.gif │ ├── customBuildCallbacks.xml │ ├── felix │ ├── src │ │ └── org │ │ │ └── apache │ │ │ └── felix │ │ │ └── resolver │ │ │ ├── Backlog.java │ │ │ ├── Blame.java │ │ │ ├── Candidates.java │ │ │ ├── DumbExecutor.java │ │ │ ├── EnhancedExecutor.java │ │ │ ├── Logger.java │ │ │ ├── PackageSpaces.java │ │ │ ├── Packages.java │ │ │ ├── PermutationType.java │ │ │ ├── ProblemReduction.java │ │ │ ├── ResolutionError.java │ │ │ ├── ResolveSession.java │ │ │ ├── ResolverImpl.java │ │ │ ├── SimpleHostedCapability.java │ │ │ ├── UseConstraintError.java │ │ │ ├── UsedBlames.java │ │ │ ├── Util.java │ │ │ ├── WireCandidate.java │ │ │ ├── WireImpl.java │ │ │ ├── WrappedCapability.java │ │ │ ├── WrappedRequirement.java │ │ │ ├── WrappedResource.java │ │ │ ├── reason │ │ │ └── ReasonException.java │ │ │ └── util │ │ │ ├── ArrayMap.java │ │ │ ├── CandidateSelector.java │ │ │ ├── CopyOnWriteSet.java │ │ │ ├── OpenHashMap.java │ │ │ ├── OpenHashMapList.java │ │ │ ├── OpenHashMapSet.java │ │ │ └── ShadowList.java │ └── src_test │ │ ├── felix-4914.json │ │ ├── org │ │ └── apache │ │ │ └── felix │ │ │ ├── resolver │ │ │ └── test │ │ │ │ ├── BigResolutionTest.java │ │ │ │ ├── FELIX_4914_Test.java │ │ │ │ ├── Main.java │ │ │ │ ├── ResolverTest.java │ │ │ │ └── util │ │ │ │ ├── BundleCapability.java │ │ │ │ ├── BundleRequirement.java │ │ │ │ ├── CandidateComparator.java │ │ │ │ ├── CapabilitySet.java │ │ │ │ ├── ClauseParser.java │ │ │ │ ├── GenericCapability.java │ │ │ │ ├── GenericRequirement.java │ │ │ │ ├── IdentityCapability.java │ │ │ │ ├── IterativeResolver.java │ │ │ │ ├── JsonReader.java │ │ │ │ ├── PackageCapability.java │ │ │ │ ├── PackageRequirement.java │ │ │ │ ├── ResolveContextImpl.java │ │ │ │ ├── ResourceImpl.java │ │ │ │ └── SimpleFilter.java │ │ │ └── utils │ │ │ └── version │ │ │ ├── VersionCleaner.java │ │ │ ├── VersionRange.java │ │ │ └── VersionTable.java │ │ └── resolution.json │ ├── forceQualifierUpdate.txt │ ├── osgi │ ├── j9stubs.jar │ └── src │ │ └── org │ │ └── osgi │ │ ├── dto │ │ ├── DTO.java │ │ └── package-info.java │ │ ├── framework │ │ ├── AdaptPermission.java │ │ ├── AdminPermission.java │ │ ├── AllServiceListener.java │ │ ├── Bundle.java │ │ ├── BundleActivator.java │ │ ├── BundleContext.java │ │ ├── BundleEvent.java │ │ ├── BundleException.java │ │ ├── BundleListener.java │ │ ├── BundlePermission.java │ │ ├── BundleReference.java │ │ ├── CapabilityPermission.java │ │ ├── Configurable.java │ │ ├── Constants.java │ │ ├── Filter.java │ │ ├── FrameworkEvent.java │ │ ├── FrameworkListener.java │ │ ├── FrameworkUtil.java │ │ ├── InvalidSyntaxException.java │ │ ├── PackagePermission.java │ │ ├── PrototypeServiceFactory.java │ │ ├── ServiceEvent.java │ │ ├── ServiceException.java │ │ ├── ServiceFactory.java │ │ ├── ServiceListener.java │ │ ├── ServiceObjects.java │ │ ├── ServicePermission.java │ │ ├── ServiceReference.java │ │ ├── ServiceRegistration.java │ │ ├── SignerProperty.java │ │ ├── SynchronousBundleListener.java │ │ ├── UnfilteredServiceListener.java │ │ ├── Version.java │ │ ├── VersionRange.java │ │ ├── connect │ │ │ ├── ConnectContent.java │ │ │ ├── ConnectFrameworkFactory.java │ │ │ ├── ConnectModule.java │ │ │ ├── FrameworkUtilHelper.java │ │ │ ├── ModuleConnector.java │ │ │ └── package-info.java │ │ ├── dto │ │ │ ├── BundleDTO.java │ │ │ ├── FrameworkDTO.java │ │ │ ├── ServiceReferenceDTO.java │ │ │ └── package-info.java │ │ ├── hooks │ │ │ ├── bundle │ │ │ │ ├── CollisionHook.java │ │ │ │ ├── EventHook.java │ │ │ │ ├── FindHook.java │ │ │ │ └── package-info.java │ │ │ ├── resolver │ │ │ │ ├── ResolverHook.java │ │ │ │ ├── ResolverHookFactory.java │ │ │ │ └── package-info.java │ │ │ ├── service │ │ │ │ ├── EventHook.java │ │ │ │ ├── EventListenerHook.java │ │ │ │ ├── FindHook.java │ │ │ │ ├── ListenerHook.java │ │ │ │ └── package-info.java │ │ │ └── weaving │ │ │ │ ├── WeavingException.java │ │ │ │ ├── WeavingHook.java │ │ │ │ ├── WovenClass.java │ │ │ │ ├── WovenClassListener.java │ │ │ │ └── package-info.java │ │ ├── launch │ │ │ ├── Framework.java │ │ │ ├── FrameworkFactory.java │ │ │ └── package-info.java │ │ ├── namespace │ │ │ ├── AbstractWiringNamespace.java │ │ │ ├── BundleNamespace.java │ │ │ ├── ExecutionEnvironmentNamespace.java │ │ │ ├── HostNamespace.java │ │ │ ├── IdentityNamespace.java │ │ │ ├── NativeNamespace.java │ │ │ ├── PackageNamespace.java │ │ │ └── package-info.java │ │ ├── package-info.java │ │ ├── startlevel │ │ │ ├── BundleStartLevel.java │ │ │ ├── FrameworkStartLevel.java │ │ │ ├── dto │ │ │ │ ├── BundleStartLevelDTO.java │ │ │ │ ├── FrameworkStartLevelDTO.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ └── wiring │ │ │ ├── BundleCapability.java │ │ │ ├── BundleRequirement.java │ │ │ ├── BundleRevision.java │ │ │ ├── BundleRevisions.java │ │ │ ├── BundleWire.java │ │ │ ├── BundleWiring.java │ │ │ ├── FrameworkWiring.java │ │ │ ├── dto │ │ │ ├── BundleRevisionDTO.java │ │ │ ├── BundleWireDTO.java │ │ │ ├── BundleWiringDTO.java │ │ │ ├── FrameworkWiringDTO.java │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ ├── resource │ │ ├── Capability.java │ │ ├── Namespace.java │ │ ├── Requirement.java │ │ ├── Resource.java │ │ ├── Wire.java │ │ ├── Wiring.java │ │ ├── dto │ │ │ ├── CapabilityDTO.java │ │ │ ├── CapabilityRefDTO.java │ │ │ ├── RequirementDTO.java │ │ │ ├── RequirementRefDTO.java │ │ │ ├── ResourceDTO.java │ │ │ ├── WireDTO.java │ │ │ ├── WiringDTO.java │ │ │ └── package-info.java │ │ └── package-info.java │ │ ├── service │ │ ├── condition │ │ │ ├── Condition.java │ │ │ └── package-info.java │ │ ├── condpermadmin │ │ │ ├── BundleLocationCondition.java │ │ │ ├── BundleSignerCondition.java │ │ │ ├── Condition.java │ │ │ ├── ConditionInfo.java │ │ │ ├── ConditionalPermissionAdmin.java │ │ │ ├── ConditionalPermissionInfo.java │ │ │ ├── ConditionalPermissionUpdate.java │ │ │ └── package-info.java │ │ ├── log │ │ │ ├── FormatterLogger.java │ │ │ ├── LogEntry.java │ │ │ ├── LogLevel.java │ │ │ ├── LogListener.java │ │ │ ├── LogReaderService.java │ │ │ ├── LogService.java │ │ │ ├── Logger.java │ │ │ ├── LoggerConsumer.java │ │ │ ├── LoggerFactory.java │ │ │ ├── admin │ │ │ │ ├── LoggerAdmin.java │ │ │ │ ├── LoggerContext.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ ├── packageadmin │ │ │ ├── ExportedPackage.java │ │ │ ├── PackageAdmin.java │ │ │ ├── RequiredBundle.java │ │ │ └── package-info.java │ │ ├── permissionadmin │ │ │ ├── PermissionAdmin.java │ │ │ ├── PermissionInfo.java │ │ │ └── package-info.java │ │ ├── resolver │ │ │ ├── HostedCapability.java │ │ │ ├── ResolutionException.java │ │ │ ├── ResolveContext.java │ │ │ ├── Resolver.java │ │ │ └── package-info.java │ │ ├── startlevel │ │ │ ├── StartLevel.java │ │ │ └── package-info.java │ │ └── url │ │ │ ├── AbstractURLStreamHandlerService.java │ │ │ ├── URLConstants.java │ │ │ ├── URLStreamHandlerService.java │ │ │ ├── URLStreamHandlerSetter.java │ │ │ └── package-info.java │ │ └── util │ │ └── tracker │ │ ├── AbstractTracked.java │ │ ├── BundleTracker.java │ │ ├── BundleTrackerCustomizer.java │ │ ├── ServiceTracker.java │ │ ├── ServiceTrackerCustomizer.java │ │ └── package-info.java │ ├── plugin.xml │ ├── pom.xml │ ├── profile.list │ ├── supplement │ ├── .classpath │ ├── .gitignore │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ ├── org.eclipse.jdt.core.prefs │ │ ├── org.eclipse.jdt.ui.prefs │ │ └── org.eclipse.pde.api.tools.prefs │ ├── META-INF │ │ └── MANIFEST.MF │ ├── about.html │ ├── build.properties │ ├── forceQualifierUpdate.txt │ ├── plugin.properties │ └── src │ │ └── org │ │ └── eclipse │ │ ├── equinox │ │ └── log │ │ │ ├── ExtendedLogEntry.java │ │ │ ├── ExtendedLogReaderService.java │ │ │ ├── ExtendedLogService.java │ │ │ ├── LogFilter.java │ │ │ ├── LogPermission.java │ │ │ ├── LogPermissionCollection.java │ │ │ ├── Logger.java │ │ │ └── SynchronousLogListener.java │ │ └── osgi │ │ ├── framework │ │ ├── console │ │ │ ├── CommandInterpreter.java │ │ │ ├── CommandProvider.java │ │ │ ├── ConsoleSession.java │ │ │ └── package.html │ │ ├── eventmgr │ │ │ ├── CopyOnWriteIdentityMap.java │ │ │ ├── EventDispatcher.java │ │ │ ├── EventListeners.java │ │ │ ├── EventManager.java │ │ │ ├── ListenerQueue.java │ │ │ └── package.html │ │ ├── internal │ │ │ └── reliablefile │ │ │ │ ├── ReliableFile.java │ │ │ │ ├── ReliableFileInputStream.java │ │ │ │ └── ReliableFileOutputStream.java │ │ └── log │ │ │ ├── FrameworkLog.java │ │ │ ├── FrameworkLogEntry.java │ │ │ └── package.html │ │ ├── internal │ │ ├── location │ │ │ ├── LocationHelper.java │ │ │ ├── Locker.java │ │ │ ├── Locker_JavaIo.java │ │ │ └── Locker_JavaNio.java │ │ ├── messages │ │ │ ├── ExternalMessages.properties │ │ │ └── Msg.java │ │ └── util │ │ │ └── Tokenizer.java │ │ ├── report │ │ └── resolution │ │ │ └── ResolutionReport.java │ │ ├── service │ │ ├── datalocation │ │ │ ├── Location.java │ │ │ └── package.html │ │ ├── debug │ │ │ ├── DebugOptions.java │ │ │ ├── DebugOptionsListener.java │ │ │ ├── DebugTrace.java │ │ │ └── package.html │ │ ├── environment │ │ │ ├── Constants.java │ │ │ ├── EnvironmentInfo.java │ │ │ └── package.html │ │ ├── localization │ │ │ ├── BundleLocalization.java │ │ │ ├── LocaleProvider.java │ │ │ └── package.html │ │ ├── runnable │ │ │ ├── ApplicationLauncher.java │ │ │ ├── ApplicationRunnable.java │ │ │ ├── ParameterizedRunnable.java │ │ │ ├── StartupMonitor.java │ │ │ └── package.html │ │ └── urlconversion │ │ │ └── URLConverter.java │ │ ├── storagemanager │ │ ├── ManagedOutputStream.java │ │ ├── StorageManager.java │ │ └── package.html │ │ └── util │ │ ├── ManifestElement.java │ │ └── NLS.java │ └── systembundle.properties ├── docs ├── .gitignore ├── CNAME ├── Gemfile ├── Gemfile.lock ├── README.md ├── _articles │ ├── Adaptor_Hooks.md │ ├── Boot_Delegation.md │ ├── URL_Handlers.md │ └── Where_Is_My_Bundle.md ├── _commands │ ├── app-commands.md │ ├── disconnect.md │ ├── equinox-commands.md │ ├── exportFrameworkState.md │ ├── help.md │ ├── man.md │ └── wires.md ├── _config.yml ├── _launcher │ ├── equinox_launcher.md │ ├── execution_environment_descriptions.md │ ├── headless_junit_testing.md │ ├── launcher_issues.md │ ├── launcher_plan.md │ ├── p2_admin_ui.md │ ├── starting_eclipse_commandline.md │ └── startup_issues.md ├── _layouts │ ├── default.html │ └── post.html ├── assets │ └── img │ │ └── logo.png ├── index.md └── run.sh ├── features ├── org.eclipse.equinox.compendium.sdk │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.core.runtime.prefs │ ├── build.properties │ ├── feature.properties │ ├── feature.xml │ └── forceQualifierUpdate.txt ├── org.eclipse.equinox.core.feature │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.core.runtime.prefs │ ├── build.properties │ ├── feature.properties │ ├── feature.xml │ └── forceQualifierUpdate.txt ├── org.eclipse.equinox.core.sdk │ ├── .project │ ├── .settings │ │ └── org.eclipse.core.resources.prefs │ ├── build.properties │ ├── feature.properties │ ├── feature.xml │ └── forceQualifierUpdate.txt ├── org.eclipse.equinox.executable.feature │ ├── .cproject │ ├── .project │ ├── .settings │ │ ├── org.eclipse.cdt.codan.core.prefs │ │ ├── org.eclipse.cdt.core.prefs │ │ ├── org.eclipse.cdt.ui.prefs │ │ └── org.eclipse.core.resources.prefs │ ├── Build-Equinox-native-binaries-for-running-platform.launch │ ├── README.md │ ├── bin │ │ └── cocoa │ │ │ └── macosx │ │ │ ├── aarch64 │ │ │ └── Eclipse.app │ │ │ │ └── Contents │ │ │ │ └── Info.plist │ │ │ └── x86_64 │ │ │ └── Eclipse.app │ │ │ └── Contents │ │ │ └── Info.plist │ ├── build.properties │ ├── feature.properties │ ├── feature.xml │ ├── forceQualifierUpdate.txt │ ├── library │ │ ├── cocoa │ │ │ ├── build.sh │ │ │ ├── eclipseCocoa.c │ │ │ ├── eclipseCocoaCommon.c │ │ │ ├── eclipseCocoaMain.c │ │ │ ├── eclipseMain.c │ │ │ └── make_cocoa.mak │ │ ├── eclipse-memcpy.h │ │ ├── eclipse.c │ │ ├── eclipseCommon.c │ │ ├── eclipseCommon.h │ │ ├── eclipseConfig.c │ │ ├── eclipseConfig.h │ │ ├── eclipseJNI.c │ │ ├── eclipseJNI.h │ │ ├── eclipseMain.c │ │ ├── eclipseNix.c │ │ ├── eclipseOS.h │ │ ├── eclipseShm.c │ │ ├── eclipseShm.h │ │ ├── eclipseUnicode.h │ │ ├── eclipseUtil.c │ │ ├── eclipseUtil.h │ │ ├── gtk │ │ │ ├── .gitignore │ │ │ ├── build.sh │ │ │ ├── check_dependencies.sh │ │ │ ├── eclipseGtk.c │ │ │ ├── eclipseGtk.h │ │ │ ├── eclipseGtkCommon.c │ │ │ ├── eclipseGtkInit.c │ │ │ └── make_linux.mak │ │ ├── make_version.mak │ │ └── win32 │ │ │ ├── build.bat │ │ │ ├── eclipse.exe.manifest │ │ │ ├── eclipse.ico │ │ │ ├── eclipse.rc │ │ │ ├── eclipseWin.c │ │ │ ├── eclipseWinCommon.c │ │ │ └── make_win64.mak │ ├── pom.xml │ ├── resources │ │ ├── build.properties │ │ └── build.xml │ └── root │ │ └── about.html ├── org.eclipse.equinox.sdk │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.core.runtime.prefs │ ├── build.properties │ ├── feature.properties │ ├── feature.xml │ └── forceQualifierUpdate.txt ├── org.eclipse.equinox.server.core │ ├── .project │ ├── .settings │ │ ├── org.eclipse.core.resources.prefs │ │ └── org.eclipse.core.runtime.prefs │ ├── build.properties │ ├── feature.properties │ ├── feature.xml │ └── forceQualifierUpdate.txt └── org.eclipse.equinox.server.jetty │ ├── .project │ ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.core.runtime.prefs │ ├── build.properties │ ├── feature.properties │ ├── feature.xml │ └── forceQualifierUpdate.txt ├── launcher-binary-parent └── pom.xml ├── pom.xml ├── prepareNextDevCycle.sh └── releng ├── org.eclipse.equinox.releng ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.core.runtime.prefs ├── Equinox.setup └── EquinoxConfiguration.setup ├── tck.keystore └── tcks.target /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/checkDependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/.github/workflows/checkDependencies.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/.github/workflows/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.github/workflows/doCleanCode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/.github/workflows/doCleanCode.yml -------------------------------------------------------------------------------- /.github/workflows/pr-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/.github/workflows/pr-checks.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.github/workflows/updateRelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/.github/workflows/updateRelease.yml -------------------------------------------------------------------------------- /.github/workflows/version-increments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/.github/workflows/version-increments.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/.mvn/extensions.xml -------------------------------------------------------------------------------- /.mvn/maven.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/.mvn/maven.config -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/README.md -------------------------------------------------------------------------------- /bundles/build.properties: -------------------------------------------------------------------------------- 1 | pom.model.groupId=org.eclipse.platform 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.app/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.app/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.app/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.app/.options -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.app/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.app/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Tue May 25 15:00:03 EDT 2004 2 | encoding/=UTF-8 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.app/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.app/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.app/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.app/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.app/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.app/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.app/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.app/about_files/LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.app/about_files/LICENSE-2.0.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.app/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.app/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.app/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.app/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.app/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.app/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.app/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.app/plugin.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.app/schema/applications.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.app/schema/applications.exsd -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.app/schema/products.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.app/schema/products.exsd -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.bidi.tests/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.bidi.tests/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi.tests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi.tests/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi.tests/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.bidi.tests/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi.tests/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.bidi.tests/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi.tests/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.bidi.tests/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi.tests/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.bidi.tests/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi.tests/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.bidi.tests/plugin.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi.tests/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.bidi.tests/test.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.bidi/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.bidi/.options -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.bidi/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Tue May 25 15:00:03 EDT 2004 2 | encoding/=UTF-8 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.bidi/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.bidi/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.bidi/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.bidi/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.bidi/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.bidi/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.bidi/plugin.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.bidi/schema/bidiTypes.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.bidi/schema/bidiTypes.exsd -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.cm.test/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.cm.test/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.cm.test/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.cm.test/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.cm.test/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.cm.test/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.cm.test/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.cm.test/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.cm.test/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.cm.test/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.cm.test/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.cm.test/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.cm/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.cm/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.cm/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.cm/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.cm/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.cm/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.cm/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.cm/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.cm/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.cm/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.cm/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.cm/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.cm/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.cm/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.cm/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.cm/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.cm/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.cm/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.cm/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.cm/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.common.tests/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.common.tests/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common.tests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common.tests/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.common.tests/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common.tests/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.common.tests/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common.tests/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.common.tests/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common.tests/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.common.tests/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common.tests/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.common.tests/plugin.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common.tests/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.common.tests/test.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.common/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.common/.options -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.common/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common/.settings/.api_filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.common/.settings/.api_filters -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Tue May 25 15:00:03 EDT 2004 2 | encoding/=UTF-8 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.common/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.common/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.common/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.common/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.common/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.common/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.common/readme.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.compendium.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.compendium.tests/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.compendium.tests/.gitignore: -------------------------------------------------------------------------------- 1 | /bundle_tests 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.compendium.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.compendium.tests/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.compendium.tests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Tue May 25 15:00:03 EDT 2004 2 | encoding/=UTF-8 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.compendium.tests/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.compendium.tests/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.compendium.tests/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.compendium.tests/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.compendium.tests/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.compendium.tests/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.compendium.tests/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.concurrent/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.concurrent/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.concurrent/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.concurrent/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.concurrent/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.concurrent/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.concurrent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.concurrent/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.concurrent/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.concurrent/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.concurrent/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.concurrent/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.concurrent/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.concurrent/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.concurrent/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.concurrent/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.jaas.fragment/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.jaas.fragment/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.jaas.fragment/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.jaas.fragment/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.jaas.fragment/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.jaas.fragment/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.jaas.fragment/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.jaas.fragment/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.jaas.fragment/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.jaas.fragment/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.jaas.fragment/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.jaas.fragment/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.ssh.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.ssh.tests/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.ssh.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.ssh.tests/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.ssh.tests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.ssh.tests/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.ssh.tests/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.ssh.tests/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.ssh.tests/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.ssh.tests/hostkey.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.ssh.tests/hostkey.ser -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.ssh/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.ssh/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.ssh/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.ssh/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.ssh/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.ssh/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.ssh/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.ssh/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.ssh/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.ssh/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.ssh/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.ssh/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.ssh/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.ssh/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.ssh/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.tests/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.tests/.gitignore: -------------------------------------------------------------------------------- 1 | /hostkey.ser 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.tests/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.tests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.tests/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.tests/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.tests/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.tests/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.tests/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.tests/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.tests/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console.tests/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console.tests/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console/.settings/org.eclipse.pde.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console/.settings/org.eclipse.pde.prefs -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.console/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.console/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.coordinator/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.coordinator/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.coordinator/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.coordinator/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.coordinator/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Fri Dec 17 10:42:20 CST 2010 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.coordinator/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.coordinator/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.coordinator/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.coordinator/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.coordinator/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.coordinator/about_files/LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.coordinator/about_files/LICENSE-2.0.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.coordinator/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.coordinator/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.coordinator/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.coordinator/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.coordinator/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.coordinator/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.device/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.device/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.device/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.device/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.device/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Tue May 25 15:00:03 EDT 2004 2 | encoding/=UTF-8 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.device/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.device/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.device/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.device/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.device/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.device/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.device/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.device/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.device/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.device/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.device/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.ds.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.ds.tests/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.ds.tests/.gitignore: -------------------------------------------------------------------------------- 1 | /scr_test 2 | OSGI-INF/org.eclipse.*.xml 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.ds.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.ds.tests/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.ds.tests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.ds.tests/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.ds.tests/All DS Tests.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.ds.tests/All DS Tests.launch -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.ds.tests/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.ds.tests/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.ds.tests/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.ds.tests/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.ds.tests/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.ds.tests/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.ds.tests/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.ds.tests/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.ds.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.ds.tests/pom.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.ds.tests/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.ds.tests/test.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.event/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.event/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.event/.gitignore: -------------------------------------------------------------------------------- 1 | /OSGI-INF/org.eclipse.*.xml 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.event/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.event/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.event/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Tue May 25 15:00:03 EDT 2004 2 | encoding/=UTF-8 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.event/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.event/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.event/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.event/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.event/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.event/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.event/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.event/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.event/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.event/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.event/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.jetty/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.jetty/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.jetty/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.jetty/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.jetty/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.jetty/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.jetty/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.jetty/OSGI-INF/metatype/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.jetty/OSGI-INF/metatype/config.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.jetty/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.jetty/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.jetty/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.jetty/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.jetty/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.jetty/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.jetty/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.jetty/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.registry/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.registry/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.registry/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.registry/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.registry/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.registry/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.registry/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.registry/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.registry/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.registry/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.registry/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.registry/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.registry/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.registry/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.registry/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.registry/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.registry/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.registry/plugin.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.registry/schema/filters.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.registry/schema/filters.exsd -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.registry/schema/httpcontexts.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.registry/schema/httpcontexts.exsd -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.registry/schema/resources.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.registry/schema/resources.exsd -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.registry/schema/servlets.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.registry/schema/servlets.exsd -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.service.api/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.service.api/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.service.api/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.service.api/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.service.api/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.service.api/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.service.api/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.service.api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.service.api/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.service.api/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.service.api/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.servlet.tests/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet.tests/.gitignore: -------------------------------------------------------------------------------- 1 | /bundles_bin 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.servlet.tests/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet.tests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet.tests/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet.tests/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.servlet.tests/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet.tests/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.servlet.tests/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet.tests/bundles_src/tb1/org/eclipse/equinox/http/servlet/tests/tb1/resource1.txt: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet.tests/http.context.test/1/test: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet.tests/http.context.test/2/test: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet.tests/src/org/eclipse/equinox/http/servlet/tests/index.txt: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet.tests/src/org/eclipse/equinox/http/servlet/tests/resource1.txt: -------------------------------------------------------------------------------- 1 | a 2 | 3 | Do NOT edit this File! 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet.tests/src/org/eclipse/equinox/http/servlet/tests/resource2.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet.tests/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.servlet.tests/test.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.servlet/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.servlet/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet/.settings/.api_filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.servlet/.settings/.api_filters -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.servlet/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.servlet/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.servlet/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servlet/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.servlet/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servletbridge/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.servletbridge/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servletbridge/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.servletbridge/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servletbridge/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servletbridge/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servletbridge/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.servletbridge/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servletbridge/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.servletbridge/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.http.servletbridge/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.http.servletbridge/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.jsp.jasper.registry/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.jsp.jasper.registry/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.jsp.jasper.registry/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.jsp.jasper.registry/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.jsp.jasper.registry/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.jsp.jasper.registry/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.jsp.jasper.registry/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.jsp.jasper.registry/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.jsp.jasper.registry/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.jsp.jasper.registry/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.jsp.jasper/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.jsp.jasper/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.jsp.jasper/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.jsp.jasper/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.jsp.jasper/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.jsp.jasper/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.jsp.jasper/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.jsp.jasper/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.jsp.jasper/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.jsp.jasper/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.jsp.jasper/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.jsp.jasper/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.jsp.jasper/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.jsp.jasper/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.jsp.jasper/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.jsp.jasper/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher.gtk.linux.aarch64/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.launcher.gtk.linux.aarch64/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher.gtk.linux.ppc64le/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.launcher.gtk.linux.ppc64le/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher.gtk.linux.riscv64/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.launcher.gtk.linux.riscv64/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher.gtk.linux.x86_64/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.launcher.gtk.linux.x86_64/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher.gtk.linux.x86_64/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.launcher.gtk.linux.x86_64/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.launcher.tests/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.launcher.tests/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher.tests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher.tests/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.launcher.tests/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher.tests/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.launcher.tests/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher.win32.win32.aarch64/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher.win32.win32.x86_64/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.launcher.win32.win32.x86_64/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher.win32.win32.x86_64/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.launcher/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.launcher/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.launcher/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.launcher/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.launcher/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.launcher/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.launcher/launcher.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.launcher/launcher.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.log.stream/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.log.stream/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.log.stream/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.log.stream/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.log.stream/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.log.stream/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.log.stream/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.log.stream/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.log.stream/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.log.stream/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.log.stream/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.log.stream/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.log.stream/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.log.stream/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.log.stream/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.log.stream/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.metatype/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.metatype/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.metatype/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.metatype/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.metatype/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Tue May 25 15:00:03 EDT 2004 2 | encoding/=UTF-8 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.metatype/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.metatype/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.metatype/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.metatype/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.metatype/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.metatype/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.metatype/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.metatype/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.metatype/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.metatype/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.metatype/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.preferences.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.preferences.tests/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.preferences.tests/.gitignore: -------------------------------------------------------------------------------- 1 | /scr_test 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.preferences.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.preferences.tests/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.preferences.tests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.preferences.tests/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.preferences.tests/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.preferences.tests/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.preferences.tests/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.preferences.tests/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.preferences.tests/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.preferences.tests/test.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.preferences/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.preferences/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.preferences/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.preferences/.options -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.preferences/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.preferences/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.preferences/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Tue May 25 15:00:03 EDT 2004 2 | encoding/=UTF-8 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.preferences/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.preferences/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.preferences/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.preferences/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.preferences/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.preferences/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.preferences/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.preferences/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.preferences/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.preferences/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.preferences/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.preferences/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.preferences/plugin.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.preferences/schema/preferences.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.preferences/schema/preferences.exsd -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.region.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.region.tests/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.region.tests/.gitignore: -------------------------------------------------------------------------------- 1 | /bundle_tests 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.region.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.region.tests/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.region.tests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Tue May 25 15:00:03 EDT 2004 2 | encoding/=UTF-8 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.region.tests/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.region.tests/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.region.tests/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.region.tests/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.region.tests/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.region.tests/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.region.tests/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.region.tests/stubs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.region.tests/stubs/README -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.region.tests/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.region.tests/test.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.region/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.region/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.region/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.region/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.region/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Tue May 25 15:00:03 EDT 2004 2 | encoding/=UTF-8 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.region/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.region/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.region/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.region/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.region/README.md -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.region/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.region/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.region/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.region/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.region/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.region/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.registry/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.registry/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.registry/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.registry/.options -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.registry/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.registry/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.registry/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Tue May 25 15:00:03 EDT 2004 2 | encoding/=UTF-8 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.registry/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.registry/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.registry/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.registry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.registry/README.md -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.registry/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.registry/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.registry/about_files/LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.registry/about_files/LICENSE-2.0.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.registry/about_files/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.registry/about_files/NOTICE.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.registry/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.registry/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.registry/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.registry/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.registry/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.registry/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.registry/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.registry/plugin.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.registry/schema/adapters.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.registry/schema/adapters.exsd -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.linux/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.linux/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.linux/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.linux/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.linux/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.linux/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.linux/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.linux/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.linux/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.linux/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.linux/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.linux/fragment.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.linux/fragment.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.linux/fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.linux/fragment.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.linux/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.linux/pom.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.macosx/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.macosx/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.macosx/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.macosx/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.macosx/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.macosx/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.macosx/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.macosx/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.macosx/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.macosx/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.macosx/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.macosx/fragment.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.macosx/fragment.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.macosx/fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.macosx/fragment.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.macosx/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.macosx/pom.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.tests/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.tests/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.tests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.tests/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.tests/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.tests/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.tests/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.tests/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.tests/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.tests/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.tests/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.tests/test.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.ui/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.ui/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.ui/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.ui/.options -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.ui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.ui/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.ui/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.ui/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.ui/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.ui/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.ui/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.ui/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.ui/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.ui/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.ui/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.ui/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.ui/icons/full/obj16/red.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.ui/icons/full/obj16/red.GIF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.ui/icons/storage/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.ui/icons/storage/save.gif -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.ui/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.ui/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.ui/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.ui/plugin.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.win32/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.win32/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.win32/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.win32/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.win32/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.win32/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.win32/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.win32/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.win32/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.win32/ReadMe.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.win32/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.win32/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.win32/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.win32/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.win32/fragment.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.win32/fragment.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.win32/fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.win32/fragment.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security.win32/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security.win32/pom.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security/.options -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security/plugin.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security/pom.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security/readme.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security/schema/callbackHandler.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security/schema/callbackHandler.exsd -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security/schema/internalUI.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security/schema/internalUI.exsd -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security/schema/loginModule.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security/schema/loginModule.exsd -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.security/schema/secureStorage.exsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.security/schema/secureStorage.exsd -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.servletbridge/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.servletbridge/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.servletbridge/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.servletbridge/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.servletbridge/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.servletbridge/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.servletbridge/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.servletbridge/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.servletbridge/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.servletbridge/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.servletbridge/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.servletbridge/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.servletbridge/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.servletbridge/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.slf4j/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.slf4j/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.slf4j/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.slf4j/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.slf4j/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.slf4j/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.slf4j/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.slf4j/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.slf4j/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.slf4j/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.slf4j/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.slf4j/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.slf4j/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.transforms.hook/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.transforms.hook/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.transforms.hook/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.transforms.hook/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.transforms.hook/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.transforms.hook/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.transforms.hook/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.transforms.hook/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.transforms.hook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.transforms.hook/README.md -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.transforms.hook/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.transforms.hook/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.transforms.hook/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.transforms.hook/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.transforms.xslt/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.transforms.xslt/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.transforms.xslt/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.transforms.xslt/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.transforms.xslt/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.transforms.xslt/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.transforms.xslt/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.transforms.xslt/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.transforms.xslt/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.transforms.xslt/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.transforms.xslt/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.transforms.xslt/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.transforms.xslt/bundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.transforms.xslt/bundle.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.useradmin/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.useradmin/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.useradmin/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.useradmin/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.useradmin/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Tue May 25 15:00:03 EDT 2004 2 | encoding/=UTF-8 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.useradmin/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.useradmin/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.useradmin/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.useradmin/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.useradmin/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.useradmin/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.useradmin/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.useradmin/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.useradmin/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.useradmin/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.useradmin/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.caching.j9/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.weaving.caching.j9/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.caching.j9/.options: -------------------------------------------------------------------------------- 1 | org.aspectj.osgi.service.caching.j9/debug=false 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.caching.j9/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.weaving.caching.j9/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.caching.j9/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Mon Aug 04 14:33:55 CEST 2008 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.caching.j9/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.caching.j9/META-INF/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.weaving.caching.j9/META-INF/p2.inf -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.caching.j9/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.weaving.caching.j9/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.caching.j9/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.weaving.caching.j9/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.caching.j9/j9stubs.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.weaving.caching.j9/j9stubs.jar -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.caching/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.weaving.caching/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.caching/.options: -------------------------------------------------------------------------------- 1 | org.eclipse.equinox.weaving.caching/debug=false 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.caching/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.weaving.caching/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.caching/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Mon Jul 14 17:28:42 CEST 2008 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.caching/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.caching/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.weaving.caching/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.caching/META-INF/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.weaving.caching/META-INF/p2.inf -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.caching/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.weaving.caching/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.caching/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.weaving.caching/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.hook/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.weaving.hook/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.hook/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.weaving.hook/.options -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.hook/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.weaving.hook/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.hook/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Mon Aug 04 14:33:29 CEST 2008 2 | eclipse.preferences.version=1 3 | encoding/=UTF-8 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.hook/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.hook/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.weaving.hook/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.hook/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.weaving.hook/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.hook/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.weaving.hook/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.hook/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.weaving.hook/config.ini -------------------------------------------------------------------------------- /bundles/org.eclipse.equinox.weaving.hook/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.equinox.weaving.hook/readme.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.compatibility.state/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.compatibility.state/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.compatibility.state/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.compatibility.state/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.compatibility.state/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.compatibility.state/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.compatibility.state/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.compatibility.state/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.compatibility.state/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.services/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.services/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.services/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.services/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.services/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Tue May 25 15:00:14 EDT 2004 2 | encoding/=UTF-8 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.services/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.services/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.services/META-INF/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.services/META-INF/p2.inf -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.services/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.services/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.services/about_files/LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.services/about_files/LICENSE-2.0.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.services/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.services/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.services/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.services/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.services/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.services/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.services/src/org/osgi/service/component/annotations/packageinfo: -------------------------------------------------------------------------------- 1 | version 1.3 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tck/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tck/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tck/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tck/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/.gitignore: -------------------------------------------------------------------------------- 1 | /bundle_tests/ 2 | /inner/ 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Tue May 25 15:00:27 EDT 2004 2 | encoding/=UTF-8 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/.settings/org.eclipse.pde.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/.settings/org.eclipse.pde.prefs -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/All OSGi Tests.launch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/All OSGi Tests.launch -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/META-INF/services/javax.print.PrintServiceLookup: -------------------------------------------------------------------------------- 1 | # just a test 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/buddy.dependent.a.test1/resources/test.txt: -------------------------------------------------------------------------------- 1 | buddy.dependent.a.test1 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/buddy.dependent.a.test1/resources/test1.txt: -------------------------------------------------------------------------------- 1 | buddy.dependent.a.test1 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/buddy.dependent.a.test2/resources/test.txt: -------------------------------------------------------------------------------- 1 | buddy.dependent.a.test2 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/buddy.dependent.a.test2/resources/test2.txt: -------------------------------------------------------------------------------- 1 | buddy.dependent.a.test2 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/buddy.dependent.a/resources/test.txt: -------------------------------------------------------------------------------- 1 | buddy.dependent.a 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/buddy.registered.a.test1/resources/test.txt: -------------------------------------------------------------------------------- 1 | buddy.registered.a.test1 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/buddy.registered.a.test1/resources/test1.txt: -------------------------------------------------------------------------------- 1 | buddy.registered.a.test1 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/buddy.registered.a.test2/resources/test.txt: -------------------------------------------------------------------------------- 1 | buddy.registered.a.test2 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/buddy.registered.a.test2/resources/test2.txt: -------------------------------------------------------------------------------- 1 | buddy.registered.a.test2 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/buddy.registered.a/resources/test.txt: -------------------------------------------------------------------------------- 1 | buddy.registered.a 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/ext.extclasspath.a/ext/extclasspath/a/extresource.txt: -------------------------------------------------------------------------------- 1 | success 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/ext.framework.a/ext/framework/a/fwkresource.txt: -------------------------------------------------------------------------------- 1 | success 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/manifests/manifest10.mf: -------------------------------------------------------------------------------- 1 | Import-Package: pkg10 2 | Require-Capability: cap10 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/manifests/manifest11.mf: -------------------------------------------------------------------------------- 1 | Import-Package: pkg11 2 | Require-Capability: cap11 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/manifests/manifest8.mf: -------------------------------------------------------------------------------- 1 | Import-Package: pkg8 2 | Require-Capability: cap8 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/manifests/manifest9.mf: -------------------------------------------------------------------------------- 1 | Import-Package: pkg9 2 | Require-Capability: cap9 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/sub/testResource10.txt: -------------------------------------------------------------------------------- 1 | RESOURCE XX 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/sub/testResource11.txt: -------------------------------------------------------------------------------- 1 | RESOURCE XX 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/sub/testResource8.txt: -------------------------------------------------------------------------------- 1 | RESOURCE XX 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/sub/testResource9.txt: -------------------------------------------------------------------------------- 1 | RESOURCE XX 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/sub/testResourceAdd10.txt: -------------------------------------------------------------------------------- 1 | ADD 10 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/sub/testResourceAdd11.txt: -------------------------------------------------------------------------------- 1 | ADD 11 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/sub/testResourceAdd8.txt: -------------------------------------------------------------------------------- 1 | ADD 08 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/sub/testResourceAdd9.txt: -------------------------------------------------------------------------------- 1 | ADD 09 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/sub/testResourceBase.txt: -------------------------------------------------------------------------------- 1 | RESOURCE XX 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/sub2/testResource10.txt: -------------------------------------------------------------------------------- 1 | RESOURCE XX 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/sub2/testResource11.txt: -------------------------------------------------------------------------------- 1 | RESOURCE XX 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/sub2/testResource8.txt: -------------------------------------------------------------------------------- 1 | RESOURCE XX 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/sub2/testResource9.txt: -------------------------------------------------------------------------------- 1 | RESOURCE XX 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/sub2/testResourceAdd10.txt: -------------------------------------------------------------------------------- 1 | ADD 10 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/sub2/testResourceAdd11.txt: -------------------------------------------------------------------------------- 1 | ADD 11 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/sub2/testResourceAdd8.txt: -------------------------------------------------------------------------------- 1 | ADD 08 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/sub2/testResourceAdd9.txt: -------------------------------------------------------------------------------- 1 | ADD 09 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/sub2/testResourceBase.txt: -------------------------------------------------------------------------------- 1 | RESOURCE XX 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/testResource10.txt: -------------------------------------------------------------------------------- 1 | RESOURCE XX 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/testResource11.txt: -------------------------------------------------------------------------------- 1 | RESOURCE XX 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/testResource8.txt: -------------------------------------------------------------------------------- 1 | RESOURCE XX 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/testResource9.txt: -------------------------------------------------------------------------------- 1 | RESOURCE XX 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/testResourceAdd10.txt: -------------------------------------------------------------------------------- 1 | ADD 10 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/testResourceAdd11.txt: -------------------------------------------------------------------------------- 1 | ADD 11 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/testResourceAdd8.txt: -------------------------------------------------------------------------------- 1 | ADD 08 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/testResourceAdd9.txt: -------------------------------------------------------------------------------- 1 | ADD 09 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/mrBundleInputBase/multi/release/test/testResourceBase.txt: -------------------------------------------------------------------------------- 1 | RESOURCE XX 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/nativetest.a1/nativefile1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/nativetest.a2/nativefile2.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/nativetest.b1/nativefile.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/nativetest.b2/nativefile.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/nativetest.c/libs/test1/nativecode.txt: -------------------------------------------------------------------------------- 1 | libs.test1 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/nativetest.c/libs/test2/nativecode.txt: -------------------------------------------------------------------------------- 1 | libs.test2 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/nativetest.c/libs/test3/nativecode.txt: -------------------------------------------------------------------------------- 1 | libs.test3 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/nativetest.d/libs/test1/nativecode.txt: -------------------------------------------------------------------------------- 1 | libs.test1 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/nativetest.e/libs/test1/nativecode.txt: -------------------------------------------------------------------------------- 1 | libs.test1 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/nativetest.f/libs/test1/nativecode.txt: -------------------------------------------------------------------------------- 1 | libs.test1 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/security.a.frag.a/resources/frag.a.txt: -------------------------------------------------------------------------------- 1 | security.a.frag.a 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/substitutes.a/data/resource1: -------------------------------------------------------------------------------- 1 | root classpath 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/test.bug286307/OSGI-INF/permissions.perm: -------------------------------------------------------------------------------- 1 | (java.io.FilePermission "<>" "read") 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/test.link.a/test/link/a/resource.txt: -------------------------------------------------------------------------------- 1 | Test content 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/test/a/b/c/d: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/test/data/resource1: -------------------------------------------------------------------------------- 1 | root classpath 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/test/stuff/data/resource1: -------------------------------------------------------------------------------- 1 | stuff classpath 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/test2/data/resource1: -------------------------------------------------------------------------------- 1 | root classpath test2 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/test2/stuff/data/resource1: -------------------------------------------------------------------------------- 1 | stuff classpath test2 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/test2/stuff/data/resource2: -------------------------------------------------------------------------------- 1 | stuff classpath test2 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/bundles_src/test2/stuff/resource2: -------------------------------------------------------------------------------- 1 | stuff classpath test2 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/plugin.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/pom.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/profile.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/profile.list -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/resources/1.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/resources/2.txt: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/src/org/eclipse/osgi/tests/bundles/resources/3.txt: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/test.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test_files/devCPTests/devCP/tb1/resource.txt: -------------------------------------------------------------------------------- 1 | Test Content 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test_files/resolverTests/c1.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/test_files/resolverTests/c1.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test_files/resolverTests/p1.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/test_files/resolverTests/p1.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test_files/resolverTests/p2.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/test_files/resolverTests/p2.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test_files/resolverTests/r1.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/test_files/resolverTests/r1.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test_files/resolverTests/r2.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/test_files/resolverTests/r2.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test_files/resourcetests/bundles/file.txt: -------------------------------------------------------------------------------- 1 | Test Content 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test_files/resourcetests/bundles/test/file1.txt: -------------------------------------------------------------------------------- 1 | Test Content 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test_files/resourcetests/bundles/test/file2.txt: -------------------------------------------------------------------------------- 1 | Test Content 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test_files/resourcetests/bundles/test/folder/file1.txt: -------------------------------------------------------------------------------- 1 | Test Content 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test_files/resourcetests/bundles/test/folder/file2.txt: -------------------------------------------------------------------------------- 1 | Test Content 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test_files/resourcetests/bundles/test/folder/paren(: -------------------------------------------------------------------------------- 1 | Test Content 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test_files/resourcetests/bundles/test/folder/paren(.txt: -------------------------------------------------------------------------------- 1 | Test Content 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test_files/resourcetests/bundles/test/folder/paren): -------------------------------------------------------------------------------- 1 | Test Content 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test_files/resourcetests/bundles/test/folder/paren).txt: -------------------------------------------------------------------------------- 1 | Test Content 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test_files/resourcetests/bundles/testout/file.txt: -------------------------------------------------------------------------------- 1 | Test Content 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test_files/security/eclipse.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/test_files/security/eclipse.jks -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test_files/security/keystore.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/test_files/security/keystore.jks -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test_files/security/leafkeys.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/test_files/security/leafkeys.jks -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.tests/test_files/security/pkcs12/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.tests/test_files/security/pkcs12/README -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.util/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.util/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.util/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.util/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.util/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Tue May 25 15:00:37 EDT 2004 2 | encoding/=UTF-8 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.util/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.util/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.util/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.util/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.util/about_files/LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.util/about_files/LICENSE-2.0.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.util/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.util/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.util/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.util/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi.util/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi.util/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/.classpath.osgisource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/.classpath.osgisource -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/.gitignore -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/.options -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/.settings/org.eclipse.pde.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/.settings/org.eclipse.pde.prefs -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/CDC-1.0_Foundation-1.0.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/CDC-1.0_Foundation-1.0.profile -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/CDC-1.1_Foundation-1.1.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/CDC-1.1_Foundation-1.1.profile -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/J2SE-1.2.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/J2SE-1.2.profile -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/J2SE-1.3.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/J2SE-1.3.profile -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/J2SE-1.4.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/J2SE-1.4.profile -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/J2SE-1.5.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/J2SE-1.5.profile -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/JRE-1.1.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/JRE-1.1.profile -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/JavaSE-1.6.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/JavaSE-1.6.profile -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/JavaSE-1.7.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/JavaSE-1.7.profile -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/JavaSE-1.8.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/JavaSE-1.8.profile -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/JavaSE-9.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/JavaSE-9.profile -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/JavaSE_compact1-1.8.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/JavaSE_compact1-1.8.profile -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/JavaSE_compact2-1.8.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/JavaSE_compact2-1.8.profile -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/JavaSE_compact3-1.8.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/JavaSE_compact3-1.8.profile -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/META-INF/native-image/proxy-config.json: -------------------------------------------------------------------------------- 1 | [ 2 | ["org.osgi.service.cm.SynchronousConfigurationListener"] 3 | ] 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/META-INF/services/org.osgi.framework.connect.ConnectFrameworkFactory: -------------------------------------------------------------------------------- 1 | org.eclipse.osgi.launch.EquinoxFactory 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/META-INF/services/org.osgi.framework.launch.FrameworkFactory: -------------------------------------------------------------------------------- 1 | org.eclipse.osgi.launch.EquinoxFactory 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/OSGi_Minimum-1.0.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/OSGi_Minimum-1.0.profile -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/OSGi_Minimum-1.1.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/OSGi_Minimum-1.1.profile -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/OSGi_Minimum-1.2.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/OSGi_Minimum-1.2.profile -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/bnd.bnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/bnd.bnd -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/customBuildCallbacks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/customBuildCallbacks.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/felix/src_test/felix-4914.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/felix/src_test/felix-4914.json -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/felix/src_test/resolution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/felix/src_test/resolution.json -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/osgi/j9stubs.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/osgi/j9stubs.jar -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/osgi/src/org/osgi/dto/DTO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/osgi/src/org/osgi/dto/DTO.java -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/osgi/src/org/osgi/dto/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/osgi/src/org/osgi/dto/package-info.java -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/Bundle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/Bundle.java -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/Filter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/osgi/src/org/osgi/framework/Filter.java -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/osgi/src/org/osgi/resource/Wire.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/osgi/src/org/osgi/resource/Wire.java -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/osgi/src/org/osgi/resource/Wiring.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/osgi/src/org/osgi/resource/Wiring.java -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/plugin.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/pom.xml -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/profile.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/profile.list -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/supplement/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/supplement/.classpath -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/supplement/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/supplement/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/supplement/.project -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/supplement/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | #Tue May 25 15:00:03 EDT 2004 2 | encoding/=UTF-8 3 | eclipse.preferences.version=1 4 | -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/supplement/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/supplement/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/supplement/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/supplement/about.html -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/supplement/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/supplement/build.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/supplement/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/supplement/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/supplement/plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/supplement/plugin.properties -------------------------------------------------------------------------------- /bundles/org.eclipse.osgi/systembundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/bundles/org.eclipse.osgi/systembundle.properties -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | equinox.eclipseprojects.io -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_articles/Adaptor_Hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_articles/Adaptor_Hooks.md -------------------------------------------------------------------------------- /docs/_articles/Boot_Delegation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_articles/Boot_Delegation.md -------------------------------------------------------------------------------- /docs/_articles/URL_Handlers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_articles/URL_Handlers.md -------------------------------------------------------------------------------- /docs/_articles/Where_Is_My_Bundle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_articles/Where_Is_My_Bundle.md -------------------------------------------------------------------------------- /docs/_commands/app-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_commands/app-commands.md -------------------------------------------------------------------------------- /docs/_commands/disconnect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_commands/disconnect.md -------------------------------------------------------------------------------- /docs/_commands/equinox-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_commands/equinox-commands.md -------------------------------------------------------------------------------- /docs/_commands/exportFrameworkState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_commands/exportFrameworkState.md -------------------------------------------------------------------------------- /docs/_commands/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_commands/help.md -------------------------------------------------------------------------------- /docs/_commands/man.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_commands/man.md -------------------------------------------------------------------------------- /docs/_commands/wires.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_commands/wires.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_launcher/equinox_launcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_launcher/equinox_launcher.md -------------------------------------------------------------------------------- /docs/_launcher/execution_environment_descriptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_launcher/execution_environment_descriptions.md -------------------------------------------------------------------------------- /docs/_launcher/headless_junit_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_launcher/headless_junit_testing.md -------------------------------------------------------------------------------- /docs/_launcher/launcher_issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_launcher/launcher_issues.md -------------------------------------------------------------------------------- /docs/_launcher/launcher_plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_launcher/launcher_plan.md -------------------------------------------------------------------------------- /docs/_launcher/p2_admin_ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_launcher/p2_admin_ui.md -------------------------------------------------------------------------------- /docs/_launcher/starting_eclipse_commandline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_launcher/starting_eclipse_commandline.md -------------------------------------------------------------------------------- /docs/_launcher/startup_issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_launcher/startup_issues.md -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/_layouts/post.html -------------------------------------------------------------------------------- /docs/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/assets/img/logo.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/docs/run.sh -------------------------------------------------------------------------------- /features/org.eclipse.equinox.compendium.sdk/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.compendium.sdk/.project -------------------------------------------------------------------------------- /features/org.eclipse.equinox.compendium.sdk/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.equinox.compendium.sdk/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /features/org.eclipse.equinox.compendium.sdk/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.compendium.sdk/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.equinox.compendium.sdk/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.compendium.sdk/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.equinox.compendium.sdk/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.compendium.sdk/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.equinox.core.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.core.feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.equinox.core.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.equinox.core.feature/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /features/org.eclipse.equinox.core.feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.core.feature/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.equinox.core.feature/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.core.feature/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.equinox.core.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.core.feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.equinox.core.sdk/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.core.sdk/.project -------------------------------------------------------------------------------- /features/org.eclipse.equinox.core.sdk/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.equinox.core.sdk/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.core.sdk/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.equinox.core.sdk/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.core.sdk/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.equinox.core.sdk/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.core.sdk/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.equinox.core.sdk/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.core.sdk/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /features/org.eclipse.equinox.executable.feature/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.executable.feature/.cproject -------------------------------------------------------------------------------- /features/org.eclipse.equinox.executable.feature/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.executable.feature/.project -------------------------------------------------------------------------------- /features/org.eclipse.equinox.executable.feature/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.equinox.executable.feature/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.executable.feature/README.md -------------------------------------------------------------------------------- /features/org.eclipse.equinox.executable.feature/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.executable.feature/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.equinox.executable.feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.executable.feature/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.equinox.executable.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.executable.feature/pom.xml -------------------------------------------------------------------------------- /features/org.eclipse.equinox.executable.feature/root/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.executable.feature/root/about.html -------------------------------------------------------------------------------- /features/org.eclipse.equinox.sdk/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.sdk/.project -------------------------------------------------------------------------------- /features/org.eclipse.equinox.sdk/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.equinox.sdk/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /features/org.eclipse.equinox.sdk/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.sdk/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.equinox.sdk/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.sdk/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.equinox.sdk/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.sdk/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.equinox.sdk/forceQualifierUpdate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.sdk/forceQualifierUpdate.txt -------------------------------------------------------------------------------- /features/org.eclipse.equinox.server.core/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.server.core/.project -------------------------------------------------------------------------------- /features/org.eclipse.equinox.server.core/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.equinox.server.core/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /features/org.eclipse.equinox.server.core/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.server.core/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.equinox.server.core/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.server.core/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.equinox.server.core/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.server.core/feature.xml -------------------------------------------------------------------------------- /features/org.eclipse.equinox.server.jetty/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.server.jetty/.project -------------------------------------------------------------------------------- /features/org.eclipse.equinox.server.jetty/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /features/org.eclipse.equinox.server.jetty/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /features/org.eclipse.equinox.server.jetty/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.server.jetty/build.properties -------------------------------------------------------------------------------- /features/org.eclipse.equinox.server.jetty/feature.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.server.jetty/feature.properties -------------------------------------------------------------------------------- /features/org.eclipse.equinox.server.jetty/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/features/org.eclipse.equinox.server.jetty/feature.xml -------------------------------------------------------------------------------- /launcher-binary-parent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/launcher-binary-parent/pom.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/pom.xml -------------------------------------------------------------------------------- /prepareNextDevCycle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/prepareNextDevCycle.sh -------------------------------------------------------------------------------- /releng/org.eclipse.equinox.releng/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/releng/org.eclipse.equinox.releng/.project -------------------------------------------------------------------------------- /releng/org.eclipse.equinox.releng/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /releng/org.eclipse.equinox.releng/.settings/org.eclipse.core.runtime.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | line.separator=\n 3 | -------------------------------------------------------------------------------- /releng/org.eclipse.equinox.releng/Equinox.setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/releng/org.eclipse.equinox.releng/Equinox.setup -------------------------------------------------------------------------------- /releng/org.eclipse.equinox.releng/EquinoxConfiguration.setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/releng/org.eclipse.equinox.releng/EquinoxConfiguration.setup -------------------------------------------------------------------------------- /releng/tck.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/releng/tck.keystore -------------------------------------------------------------------------------- /releng/tcks.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-equinox/equinox/HEAD/releng/tcks.target --------------------------------------------------------------------------------