eclipse.platform
eclipse.platform copied to clipboard
### Current Situation Several tests have been deactivated over the years for different reasons, such as temporary incompatibilities with a specific platform/OS, bugs in the code, indeterministic behavior of the...
Currently one needs to implement an additional extension point to adapt an `IEditorInput` to an `IDocumentProvider` additionally `org.eclipse.ui.texteditor.DocumentProviderRegistry.getDocumentProvider(IEditorInput)` should use the Adapter framework as well for the provider.
Currently one can only require another nature by id, or one can only allow one or the other nature. What I recently came along (and seem not supported), is that...
Currently a component that requires the workspace can already use ``` @Reference IWorkspace workspace; ``` But sometimes one wants a workspace more indirectly e.g. see https://github.com/eclipse/ecf/issues/83, or maybe even conceptually...
`InstanceScope.INSTANCE` actually depends on the Workspace started (see https://github.com/eclipse/ecf/issues/83) something a static singelton can not express, We currently already have a consumable service of type `IScopeContext` for the bundle, so...
Originally posted here: - https://github.com/eclipse-jdt/eclipse.jdt.debug/issues/203 ----- One thing I recently missed was that I have a breakpoint where it stops and I have two strings in the variable view. It...
I just opening one of my recent Eclipse downloads and got the new message. I think @HannesWell added them. ``` WARNING: Annotation classes from the 'javax.inject' or 'javax.annotation' package found....
Tycho builds now report WARNING: Annotation classes from the 'javax.inject' or 'javax.annotation' package found. It is recommended to migrate to the corresponding replacements in the jakarta namespace. The Eclipse E4...
I regularly get "The workspace will exit with unsaved changes in this session." when using Eclipse in an embedded environment (Tycho) but this can also be seen in various test-cases...
When executing a program (e.g. maven, cucumber,...) one usually want to enable a "monocrome" mode if ansi is disabled. There currently is `org.eclipse.ui.internal.console.ansi.preferences.AnsiConsolePreferenceUtils.isAnsiConsoleEnabled()` but this is private and not accessible...