Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

579498 filter dialog types #144

Merged
merged 1 commit into from
Oct 10, 2024

Conversation

eobrienPilz
Copy link
Contributor

@eobrienPilz eobrienPilz commented Jun 16, 2022

filterDialog
ProblemView

We have a customized problem view for our application.
It displays markers of our own type pilzproblemmarker

i.e.

Defined like this.
<extension point="org.eclipse.core.resources.markers" id="pilzproblemmarker" name="pilz problem marker"> <super type="org.eclipse.core.resources.problemmarker"> </super> .......

We associate it with the problem view like this.
<extension point="org.eclipse.ui.ide.markerSupport"> id="com.pilz.pas.platform.gui.pilzproblemmarker"/>

We create our markers like this with our custom marker as a super.
<extension point="org.eclipse.core.resources.markers" id="com.pilz.pas.hal.errorhandling.ErrorCodes.STATEMENT_INDEX_OUT_OF_BOUNDS" name="%SUPPRESSION_MSG_STATEMENT_INDEX_OUT_OF_BOUNDS"> <super type="com.pilz.pas.platform.gui.pilzproblemmarker"> </super> .......

This works well with the filter dialog.

  1. All our markers get displayed in the type section of the filter dialog.
  2. Other problem markers that we don't care about (e.g. Java problems) are not displayed.

Only issue is that the supertype pilzproblemmarker is shown : see the screenshot
We need to hide it.

@eobrienPilz
Copy link
Contributor Author

Link to the bugzilla issue: https://bugs.eclipse.org/bugs/show_bug.cgi?id=579498

I just added a comment there describing the patch proposal

Copy link
Contributor

@jukzi jukzi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version in the Manifest needs to be updated.

16:42:27.335 [ERROR] Failed to execute goal org.eclipse.tycho.extras:tycho-p2-extras-plugin:3.0.0-SNAPSHOT:compare-version-with-baselines (compare-attached-artifacts-with-release) on project org.eclipse.ui.ide: Only qualifier changed for (org.eclipse.ui.ide/3.19.0.v20220610-1747). Expected to have bigger x.y.z than what is available in baseline (3.19.0.v20220511-1638) -> [Help 1]

  • I do not understand the issue - could you provide screenshots before/after?
  • new files need a copyright in the header
  • please avoid newline changes.

API

@eobrienPilz
Copy link
Contributor Author

The version in the Manifest needs to be updated.

16:42:27.335 [ERROR] Failed to execute goal org.eclipse.tycho.extras:tycho-p2-extras-plugin:3.0.0-SNAPSHOT:compare-version-with-baselines (compare-attached-artifacts-with-release) on project org.eclipse.ui.ide: Only qualifier changed for (org.eclipse.ui.ide/3.19.0.v20220610-1747). Expected to have bigger x.y.z than what is available in baseline (3.19.0.v20220511-1638) -> [Help 1]

  • I do not understand the issue - could you provide screenshots before/after?
  • new files need a copyright in the header
  • please avoid newline changes.

API

Are there guidelines somewhere on what the version should be ?

Should I change from
Bundle-Version: 3.19.0.qualifier
to
Bundle-Version: 3.19.1.qualifier

@jukzi
Copy link
Contributor

jukzi commented Aug 24, 2022

Bundle-Version: 3.19.1.qualifier

we increase by 100. see https://wiki.eclipse.org/Version_Numbering#When_to_change_the_service_segment
3.19.100

@eobrienPilz
Copy link
Contributor Author

Bundle-Version: 3.19.1.qualifier

we increase by 100. see https://wiki.eclipse.org/Version_Numbering#When_to_change_the_service_segment 3.19.100

Reading the wiki its still not clear if it should be a minor change or a service change. The extension point has changed so I thought maybe it should be minor. However if I increase minor to 3.20.0 I get an error from API Analysis in eclipse saying there is no API change.

@jukzi
Copy link
Contributor

jukzi commented Aug 24, 2022

Reading the wiki its still not clear if it should be a minor change or a service change. The extension point has changed so I thought maybe it should be minor. However if I increase minor to 3.20.0 I get an error from API Analysis in eclipse saying there is no API change.

It's not a binary break that the API Analysis detects. However it is an API change. Some guru can force an increase to 3.20 but let's wait if others agree about that change.

Copy link
Contributor

@jukzi jukzi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM (did not test it though) - @mickaelistria API change needs more reviewers

@jukzi jukzi force-pushed the 579498_FilterDialogTypes branch from 3d05345 to ae95e8a Compare April 19, 2023 11:21
@github-actions
Copy link
Contributor

github-actions bot commented Apr 19, 2023

Test Results

 1 818 files  + 3   1 818 suites  +3   1h 41m 29s ⏱️ + 3m 33s
 7 708 tests + 4   7 480 ✅ + 5  228 💤 ±0  0 ❌  - 1 
24 285 runs  +12  23 538 ✅ +13  747 💤 ±0  0 ❌  - 1 

Results for commit 7401cf7. ± Comparison against base commit a431d71.

♻️ This comment has been updated with latest results.

HannesWell pushed a commit to HannesWell/eclipse.platform.ui that referenced this pull request Jul 1, 2023
…-platform#144)

* Add filtering support for duplicate files in nested projects

- add filter to File Search to remove duplicate file entries that
  are attributed to different projects in a nested project scenario
- fixes eclipse-platform#143
@eobrienPilz eobrienPilz force-pushed the 579498_FilterDialogTypes branch from ae95e8a to 49a195d Compare April 4, 2024 15:08
@eobrienPilz eobrienPilz force-pushed the 579498_FilterDialogTypes branch from 94f352d to 24db6db Compare September 20, 2024 12:26
eobrienPilz added a commit to eobrienPilz/eclipse.platform.ui that referenced this pull request Sep 20, 2024
Squashed commit of the following:

commit 94f352d
Author: Enda O Brien <[email protected]>
Date:   Thu Apr 4 17:07:02 2024 +0100

    Fixed a couple of warnings in test code

commit 49a195d
Author: Enda O Brien <[email protected]>
Date:   Wed Aug 24 15:54:38 2022 +0100

    put add and addAll back in previous order

commit 7dd8032
Author: Enda O Brien <[email protected]>
Date:   Wed Aug 24 15:11:23 2022 +0100

    Moved copyright to be first lines in files

commit 87763b5
Author: Enda O Brien <[email protected]>
Date:   Wed Aug 24 14:41:46 2022 +0100

    Modified copyright message in test code to include my name

commit 1b08d4a
Author: Enda O Brien <[email protected]>
Date:   Wed Aug 24 14:09:12 2022 +0100

    updated documentation of markerSupport.exsd

commit 579fca0
Author: Enda O Brien <[email protected]>
Date:   Wed Aug 24 12:04:44 2022 +0100

    Added copyright notice to test code

commit 1271c95
Author: Enda O Brien <[email protected]>
Date:   Wed Aug 24 11:49:13 2022 +0100

    Fixed whitespace differences

commit 36e50cd
Author: Enda O Brien <[email protected]>
Date:   Thu Jun 9 14:16:44 2022 +0100

    Test code for application attribute on marker type reference

commit 01940b2
Author: Enda O Brien <[email protected]>
Date:   Thu Jun 9 10:57:55 2022 +0100

    Added application attribute to type reference in marker content generator
eobrienPilz added a commit to eobrienPilz/eclipse.platform.ui that referenced this pull request Sep 24, 2024
Squashed commit of the following:

commit 24db6db
Author: Enda O Brien <[email protected]>
Date:   Fri Sep 20 13:19:55 2024 +0100

    579498 filter dialog types eclipse-platform#144

    Squashed commit of the following:

    commit 94f352d
    Author: Enda O Brien <[email protected]>
    Date:   Thu Apr 4 17:07:02 2024 +0100

        Fixed a couple of warnings in test code

    commit 49a195d
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 15:54:38 2022 +0100

        put add and addAll back in previous order

    commit 7dd8032
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 15:11:23 2022 +0100

        Moved copyright to be first lines in files

    commit 87763b5
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 14:41:46 2022 +0100

        Modified copyright message in test code to include my name

    commit 1b08d4a
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 14:09:12 2022 +0100

        updated documentation of markerSupport.exsd

    commit 579fca0
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 12:04:44 2022 +0100

        Added copyright notice to test code

    commit 1271c95
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 11:49:13 2022 +0100

        Fixed whitespace differences

    commit 36e50cd
    Author: Enda O Brien <[email protected]>
    Date:   Thu Jun 9 14:16:44 2022 +0100

        Test code for application attribute on marker type reference

    commit 01940b2
    Author: Enda O Brien <[email protected]>
    Date:   Thu Jun 9 10:57:55 2022 +0100

        Added application attribute to type reference in marker content generator
@eobrienPilz eobrienPilz force-pushed the 579498_FilterDialogTypes branch from 24db6db to 99c91af Compare September 24, 2024 13:41
@eobrienPilz eobrienPilz requested a review from jukzi October 9, 2024 09:10
Copy link
Contributor

@jukzi jukzi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Overall it still looks good to me. May be you can just apply my last comments and then this is good to merge if nobody insists.

eobrienPilz added a commit to eobrienPilz/eclipse.platform.ui that referenced this pull request Oct 9, 2024
Squashed commit of the following:

commit 24db6db
Author: Enda O Brien <[email protected]>
Date:   Fri Sep 20 13:19:55 2024 +0100

    579498 filter dialog types eclipse-platform#144

    Squashed commit of the following:

    commit 94f352d
    Author: Enda O Brien <[email protected]>
    Date:   Thu Apr 4 17:07:02 2024 +0100

        Fixed a couple of warnings in test code

    commit 49a195d
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 15:54:38 2022 +0100

        put add and addAll back in previous order

    commit 7dd8032
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 15:11:23 2022 +0100

        Moved copyright to be first lines in files

    commit 87763b5
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 14:41:46 2022 +0100

        Modified copyright message in test code to include my name

    commit 1b08d4a
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 14:09:12 2022 +0100

        updated documentation of markerSupport.exsd

    commit 579fca0
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 12:04:44 2022 +0100

        Added copyright notice to test code

    commit 1271c95
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 11:49:13 2022 +0100

        Fixed whitespace differences

    commit 36e50cd
    Author: Enda O Brien <[email protected]>
    Date:   Thu Jun 9 14:16:44 2022 +0100

        Test code for application attribute on marker type reference

    commit 01940b2
    Author: Enda O Brien <[email protected]>
    Date:   Thu Jun 9 10:57:55 2022 +0100

        Added application attribute to type reference in marker content generator
@eobrienPilz eobrienPilz force-pushed the 579498_FilterDialogTypes branch from 99c91af to 96de6e5 Compare October 9, 2024 13:04
eobrienPilz added a commit to eobrienPilz/eclipse.platform.ui that referenced this pull request Oct 9, 2024
Squashed commit of the following:

commit 24db6db
Author: Enda O Brien <[email protected]>
Date:   Fri Sep 20 13:19:55 2024 +0100

    579498 filter dialog types eclipse-platform#144

    Squashed commit of the following:

    commit 94f352d
    Author: Enda O Brien <[email protected]>
    Date:   Thu Apr 4 17:07:02 2024 +0100

        Fixed a couple of warnings in test code

    commit 49a195d
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 15:54:38 2022 +0100

        put add and addAll back in previous order

    commit 7dd8032
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 15:11:23 2022 +0100

        Moved copyright to be first lines in files

    commit 87763b5
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 14:41:46 2022 +0100

        Modified copyright message in test code to include my name

    commit 1b08d4a
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 14:09:12 2022 +0100

        updated documentation of markerSupport.exsd

    commit 579fca0
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 12:04:44 2022 +0100

        Added copyright notice to test code

    commit 1271c95
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 11:49:13 2022 +0100

        Fixed whitespace differences

    commit 36e50cd
    Author: Enda O Brien <[email protected]>
    Date:   Thu Jun 9 14:16:44 2022 +0100

        Test code for application attribute on marker type reference

    commit 01940b2
    Author: Enda O Brien <[email protected]>
    Date:   Thu Jun 9 10:57:55 2022 +0100

        Added application attribute to type reference in marker content generator
@eobrienPilz eobrienPilz force-pushed the 579498_FilterDialogTypes branch from 96de6e5 to 8e7ce21 Compare October 9, 2024 13:14
eobrienPilz added a commit to eobrienPilz/eclipse.platform.ui that referenced this pull request Oct 9, 2024
Squashed commit of the following:

commit 24db6db
Author: Enda O Brien <[email protected]>
Date:   Fri Sep 20 13:19:55 2024 +0100

    579498 filter dialog types eclipse-platform#144

    Squashed commit of the following:

    commit 94f352d
    Author: Enda O Brien <[email protected]>
    Date:   Thu Apr 4 17:07:02 2024 +0100

        Fixed a couple of warnings in test code

    commit 49a195d
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 15:54:38 2022 +0100

        put add and addAll back in previous order

    commit 7dd8032
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 15:11:23 2022 +0100

        Moved copyright to be first lines in files

    commit 87763b5
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 14:41:46 2022 +0100

        Modified copyright message in test code to include my name

    commit 1b08d4a
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 14:09:12 2022 +0100

        updated documentation of markerSupport.exsd

    commit 579fca0
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 12:04:44 2022 +0100

        Added copyright notice to test code

    commit 1271c95
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 11:49:13 2022 +0100

        Fixed whitespace differences

    commit 36e50cd
    Author: Enda O Brien <[email protected]>
    Date:   Thu Jun 9 14:16:44 2022 +0100

        Test code for application attribute on marker type reference

    commit 01940b2
    Author: Enda O Brien <[email protected]>
    Date:   Thu Jun 9 10:57:55 2022 +0100

        Added application attribute to type reference in marker content generator
@eobrienPilz eobrienPilz force-pushed the 579498_FilterDialogTypes branch from 8e7ce21 to 6c2873f Compare October 9, 2024 13:16
eobrienPilz added a commit to eobrienPilz/eclipse.platform.ui that referenced this pull request Oct 9, 2024
Squashed commit of the following:

commit 24db6db
Author: Enda O Brien <[email protected]>
Date:   Fri Sep 20 13:19:55 2024 +0100

    579498 filter dialog types eclipse-platform#144

    Squashed commit of the following:

    commit 94f352d
    Author: Enda O Brien <[email protected]>
    Date:   Thu Apr 4 17:07:02 2024 +0100

        Fixed a couple of warnings in test code

    commit 49a195d
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 15:54:38 2022 +0100

        put add and addAll back in previous order

    commit 7dd8032
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 15:11:23 2022 +0100

        Moved copyright to be first lines in files

    commit 87763b5
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 14:41:46 2022 +0100

        Modified copyright message in test code to include my name

    commit 1b08d4a
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 14:09:12 2022 +0100

        updated documentation of markerSupport.exsd

    commit 579fca0
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 12:04:44 2022 +0100

        Added copyright notice to test code

    commit 1271c95
    Author: Enda O Brien <[email protected]>
    Date:   Wed Aug 24 11:49:13 2022 +0100

        Fixed whitespace differences

    commit 36e50cd
    Author: Enda O Brien <[email protected]>
    Date:   Thu Jun 9 14:16:44 2022 +0100

        Test code for application attribute on marker type reference

    commit 01940b2
    Author: Enda O Brien <[email protected]>
    Date:   Thu Jun 9 10:57:55 2022 +0100

        Added application attribute to type reference in marker content generator
@eobrienPilz eobrienPilz force-pushed the 579498_FilterDialogTypes branch from 6c2873f to f67c61a Compare October 9, 2024 14:31
commit f67c61a
Author: Enda O Brien <[email protected]>
Date:   Tue Sep 24 14:40:50 2024 +0100

    579498 filter dialog types eclipse-platform#144

    Squashed commit of the following:

    commit 24db6db
    Author: Enda O Brien <[email protected]>
    Date:   Fri Sep 20 13:19:55 2024 +0100

        579498 filter dialog types eclipse-platform#144

        Squashed commit of the following:

        commit 94f352d
        Author: Enda O Brien <[email protected]>
        Date:   Thu Apr 4 17:07:02 2024 +0100

            Fixed a couple of warnings in test code

        commit 49a195d
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 15:54:38 2022 +0100

            put add and addAll back in previous order

        commit 7dd8032
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 15:11:23 2022 +0100

            Moved copyright to be first lines in files

        commit 87763b5
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 14:41:46 2022 +0100

            Modified copyright message in test code to include my name

        commit 1b08d4a
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 14:09:12 2022 +0100

            updated documentation of markerSupport.exsd

        commit 579fca0
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 12:04:44 2022 +0100

            Added copyright notice to test code

        commit 1271c95
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 11:49:13 2022 +0100

            Fixed whitespace differences

        commit 36e50cd
        Author: Enda O Brien <[email protected]>
        Date:   Thu Jun 9 14:16:44 2022 +0100

            Test code for application attribute on marker type reference

        commit 01940b2
        Author: Enda O Brien <[email protected]>
        Date:   Thu Jun 9 10:57:55 2022 +0100

            Added application attribute to type reference in marker content generator
@eobrienPilz eobrienPilz force-pushed the 579498_FilterDialogTypes branch from f67c61a to 7401cf7 Compare October 10, 2024 10:05
@eobrienPilz eobrienPilz requested a review from jukzi October 10, 2024 11:04
@jukzi jukzi merged commit d50e66d into eclipse-platform:master Oct 10, 2024
17 checks passed
jannisCode pushed a commit to jannisCode/eclipse.platform.ui that referenced this pull request Oct 10, 2024
commit f67c61a
Author: Enda O Brien <[email protected]>
Date:   Tue Sep 24 14:40:50 2024 +0100

    579498 filter dialog types eclipse-platform#144

    Squashed commit of the following:

    commit 24db6db
    Author: Enda O Brien <[email protected]>
    Date:   Fri Sep 20 13:19:55 2024 +0100

        579498 filter dialog types eclipse-platform#144

        Squashed commit of the following:

        commit 94f352d
        Author: Enda O Brien <[email protected]>
        Date:   Thu Apr 4 17:07:02 2024 +0100

            Fixed a couple of warnings in test code

        commit 49a195d
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 15:54:38 2022 +0100

            put add and addAll back in previous order

        commit 7dd8032
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 15:11:23 2022 +0100

            Moved copyright to be first lines in files

        commit 87763b5
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 14:41:46 2022 +0100

            Modified copyright message in test code to include my name

        commit 1b08d4a
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 14:09:12 2022 +0100

            updated documentation of markerSupport.exsd

        commit 579fca0
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 12:04:44 2022 +0100

            Added copyright notice to test code

        commit 1271c95
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 11:49:13 2022 +0100

            Fixed whitespace differences

        commit 36e50cd
        Author: Enda O Brien <[email protected]>
        Date:   Thu Jun 9 14:16:44 2022 +0100

            Test code for application attribute on marker type reference

        commit 01940b2
        Author: Enda O Brien <[email protected]>
        Date:   Thu Jun 9 10:57:55 2022 +0100

            Added application attribute to type reference in marker content generator
praveen-skp pushed a commit to praveen-skp/eclipse.platform.ui that referenced this pull request Oct 14, 2024
commit f67c61a
Author: Enda O Brien <[email protected]>
Date:   Tue Sep 24 14:40:50 2024 +0100

    579498 filter dialog types eclipse-platform#144

    Squashed commit of the following:

    commit 24db6db
    Author: Enda O Brien <[email protected]>
    Date:   Fri Sep 20 13:19:55 2024 +0100

        579498 filter dialog types eclipse-platform#144

        Squashed commit of the following:

        commit 94f352d
        Author: Enda O Brien <[email protected]>
        Date:   Thu Apr 4 17:07:02 2024 +0100

            Fixed a couple of warnings in test code

        commit 49a195d
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 15:54:38 2022 +0100

            put add and addAll back in previous order

        commit 7dd8032
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 15:11:23 2022 +0100

            Moved copyright to be first lines in files

        commit 87763b5
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 14:41:46 2022 +0100

            Modified copyright message in test code to include my name

        commit 1b08d4a
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 14:09:12 2022 +0100

            updated documentation of markerSupport.exsd

        commit 579fca0
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 12:04:44 2022 +0100

            Added copyright notice to test code

        commit 1271c95
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 11:49:13 2022 +0100

            Fixed whitespace differences

        commit 36e50cd
        Author: Enda O Brien <[email protected]>
        Date:   Thu Jun 9 14:16:44 2022 +0100

            Test code for application attribute on marker type reference

        commit 01940b2
        Author: Enda O Brien <[email protected]>
        Date:   Thu Jun 9 10:57:55 2022 +0100

            Added application attribute to type reference in marker content generator
lathapatil pushed a commit to lathapatil/eclipse.platform.ui that referenced this pull request Oct 21, 2024
commit f67c61a
Author: Enda O Brien <[email protected]>
Date:   Tue Sep 24 14:40:50 2024 +0100

    579498 filter dialog types eclipse-platform#144

    Squashed commit of the following:

    commit 24db6db
    Author: Enda O Brien <[email protected]>
    Date:   Fri Sep 20 13:19:55 2024 +0100

        579498 filter dialog types eclipse-platform#144

        Squashed commit of the following:

        commit 94f352d
        Author: Enda O Brien <[email protected]>
        Date:   Thu Apr 4 17:07:02 2024 +0100

            Fixed a couple of warnings in test code

        commit 49a195d
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 15:54:38 2022 +0100

            put add and addAll back in previous order

        commit 7dd8032
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 15:11:23 2022 +0100

            Moved copyright to be first lines in files

        commit 87763b5
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 14:41:46 2022 +0100

            Modified copyright message in test code to include my name

        commit 1b08d4a
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 14:09:12 2022 +0100

            updated documentation of markerSupport.exsd

        commit 579fca0
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 12:04:44 2022 +0100

            Added copyright notice to test code

        commit 1271c95
        Author: Enda O Brien <[email protected]>
        Date:   Wed Aug 24 11:49:13 2022 +0100

            Fixed whitespace differences

        commit 36e50cd
        Author: Enda O Brien <[email protected]>
        Date:   Thu Jun 9 14:16:44 2022 +0100

            Test code for application attribute on marker type reference

        commit 01940b2
        Author: Enda O Brien <[email protected]>
        Date:   Thu Jun 9 10:57:55 2022 +0100

            Added application attribute to type reference in marker content generator
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants