-
Notifications
You must be signed in to change notification settings - Fork 6.2k
8340466: Add description for PassFailJFrame constructors #21145
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
8340466: Add description for PassFailJFrame constructors #21145
Conversation
|
👋 Welcome back aivanov! A progress list of the required criteria for merging this PR into |
|
@aivanov-jdk This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be: You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been 48 new commits pushed to the
As there are no conflicts, your changes will automatically be rebased on top of these commits when integrating. If you prefer to avoid this automatic rebasing, please check the documentation for the /integrate command for further details. ➡️ To integrate this PR with the above commit message to the |
|
@aivanov-jdk The following label will be automatically applied to this pull request:
When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing list. If you would like to change these labels, use the /label pull request command. |
Webrevs
|
The term EDT (Event Dispatch Thread) is introduced in the top-level doc comment.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shall we deprecate the constructors in favor of Builder?
The builder provides a more streamlined experience, therefore new tests should use it instead of constructors. We may update the tests which use the constructors, after which the constructors can be removed.
There are some cases where the builder approach may not work as expected especially modal dialog tests and in such instances the older constructor methods are used.
honkar-jdk
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doc changes looks good.
I can't see how it's possible… Do you have an example? The builder provides the same features as constructors do. The only difference is that builder automatically shows all the registered windows. Just like with the You also can employ (window) events to start or to synchronise other parts of running the test, jdk/test/jdk/java/awt/MenuItem/LotsOfMenuItemsTest.java Lines 74 to 85 in 9806d21
I agree there could be shortcomings in the |
|
/integrate |
|
Going to push as commit 3762ec3.
Your commit was automatically rebased without conflicts. |
|
@aivanov-jdk Pushed as commit 3762ec3. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
I added description to all the constructors available in
PassFailJFrame.I generated the javadoc for it:
PassFailJFrameconstructor details which is easier to read. This hosted javadoc could be used as a reference to its API.The constructor with the largest number of parameters contains a short description of how to use the
PassFailJFrameobject.Shall we deprecate the constructors in favour of
Builder?The builder provides a more streamlined experience, therefore new tests should use it instead of constructors. We may update the tests which use the constructors, after which the constructors can be removed.
Progress
Issue
Reviewers
Reviewing
Using
gitCheckout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/21145/head:pull/21145$ git checkout pull/21145Update a local copy of the PR:
$ git checkout pull/21145$ git pull https://git.openjdk.org/jdk.git pull/21145/headUsing Skara CLI tools
Checkout this PR locally:
$ git pr checkout 21145View PR using the GUI difftool:
$ git pr show -t 21145Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/21145.diff
Webrev
Link to Webrev Comment