Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Java9/ModularityOptions/UIProposal SH"

(All modules)
(UX Discussion)
Line 35: Line 35:
  
 
==UX Discussion==
 
==UX Discussion==
* We still need second level dialogs for details for each of the actions (except remove :) ), but we no longer need the three levels of dialogs that we currently use.
+
* [[Image:Ok_green.gif]] We still need second level dialogs for details for each of the actions (except remove :) ), but we no longer need the three levels of dialogs that we currently use.
* I've been thinking about making "All modules" a full dependency tree.
+
* [[Image:Progress.gif]] I've been thinking about making "All modules" a full dependency tree => ''option is nice-to-have, deferred''.
 
** Confer: M2e has both: a tree starting from a fixed set of roots plus a flat list of transitive dependencies
 
** Confer: M2e has both: a tree starting from a fixed set of roots plus a flat list of transitive dependencies
 
** Roots are currently implicit in JDT
 
** Roots are currently implicit in JDT
 
** Could possibly be made a view option later
 
** Could possibly be made a view option later
* The two compartments are essentially master-detail, but after adding a reads module under Details, it is likely that details for that module need to be added next. So perhaps some navigation from right to left is useful, too ("Select in All modules")
+
* [[Image:Progress.gif]] Filtering ''could be added later:''
* I played with arrow up/down icons to signify the two directions: exposing packages '''to''' other modules, and reading '''from''' other another module. Import/Export wizards, e.g., use diagonal arrows, is that better?
+
** only modified modules
* The Details compartment is a table, 2nd column being initially filled from tiny dialogs behind the buttons '''Expose Package''' / '''Read Module...'''.
+
** only main modules (i.e., no test-only dependencies)
** Perhaps exports / opens can be configured inline by use of a drop-down.
+
* [[Image:Ok_green.gif]] The two compartments are essentially master-detail
** Restrictions of exports / opens could be listed by child nodes (modules), then the label could, e.g., by "opened selectively"
+
** [[Image:Progress.gif]] After adding a reads module under Details, it is likely that details for that module need to be added next. So perhaps some navigation from right to left is useful, too ("Select in All Modules") ''deferred''
* For patching, I would intuitively expect only one pattern: add a source folder of the current project into a given module on the module path.
+
* ''withdrawn'': <strike>I played with arrow up/down icons to signify the two directions: exposing packages '''to''' other modules, and reading '''from''' other another module. Import/Export wizards, e.g., use diagonal arrows, is that better?</strike>
 +
* ''withdrawn'': <strike>The Details compartment is a table, 2nd column being initially filled from tiny dialogs behind the buttons '''Expose Package''' / '''Read Module...'''.</strike>
 +
* [[Image:Ok_green.gif]] Qualifications of exports / opens are listed as child nodes (modules), has-child indicator should suffice to signal the qualification
 +
* ?? For patching, I would intuitively expect only one pattern: add a source folder of the current project into a given module on the module path.
 
** For maximum flexibility we could also support to patch a module with another project, or just a source folder of that project.
 
** For maximum flexibility we could also support to patch a module with another project, or just a source folder of that project.
* Placement of the buttons could be debated: top two buttons only relate to the left compartment, next three only to the right compartment, but a four column design (list, buttons, table, buttons) wastes a lot of space ...
+
** Till suggested to only support project (meaning: all its source folders)
 +
* [[Image:Ok_green.gif]] when patching a module, that patched module should move to the top of the LHS list (it is now the current module)
  
 
===Tests===
 
===Tests===
 
* Many aspects of the above should consider the distinction main/test sources, how exactly is a tricky question.
 
* Many aspects of the above should consider the distinction main/test sources, how exactly is a tricky question.
** Each modification could have a flag main/test and be visualized with the same colors as in the package explorer
+
** [[Image:Ok_green.gif]] Each modification dialog will have a checkbox "[x] Test only".
** Alternatively, the entire page could have two filtered views, selectable by a drop down [main/test].
+
** [[Image:Progress.gif]] Alternatively, the entire page could have two filtered views, selectable by a drop down [main/test] - ''deferred / may not be needed due to individual checkboxes in dialogs''
 
*** Changes made in view "main" are global
 
*** Changes made in view "main" are global
 
*** Changes made in view "test" are not visible in view "main"
 
*** Changes made in view "test" are not visible in view "main"
 +
** [[Image:Ok_green.gif]] Use dark gray icons like in Package Explorer
  
 
==Functionality Discussion==
 
==Functionality Discussion==

Revision as of 18:32, 28 October 2018

I've been painting a bit and here is my first sketch to support all module-graph related options in one tab of the Java Build Path properties page:

ModuleGraph page.png

All modules

This compartment lists all modules that are contained in the module graph. The module defined by the current project is pinned to the top of the list. Other modules are sorted alphabetically.

It shows the following additional information:

  • icon decorations:
    • S = System Library
    • U = Upgrade of a System Library
    • A = Automodule
    • > = Tweaked (see "Details")
  • the origin - not enough space here, perhaps under Details
  • ...

Possible actions:

  • (Actions are en/disabled depending on selection)
  • Add a module (from those contained in JRE but not included by default, or previously removed)
  • Remove a module (applies only to JRE modules, other modules should be removed on the Libraries or Projects tab)
    • Is that restriction confusing? Alternative: when removing a module explicitly listed on the Modulepath, warn before removing.
  • Select any module for additional tweaking, see next.

Details

For the selected module we can

  • Inspect the declared details (from module-info: exports/opens/requires). Collapsed in the mockup.
  • Add any of the following tweaks:
    • Let the module expose an existing package (export and/or open), possibly restricted to certain modules.
    • Let the module read another module
    • Add more sources to patch the module, one of:
      • A source folder
      • A project
      • A jar (does it make sense to let one 3rd party thing patch another 3rd party thing?)

UX Discussion

  • Ok green.gif We still need second level dialogs for details for each of the actions (except remove :) ), but we no longer need the three levels of dialogs that we currently use.
  • Progress.gif I've been thinking about making "All modules" a full dependency tree => option is nice-to-have, deferred.
    • Confer: M2e has both: a tree starting from a fixed set of roots plus a flat list of transitive dependencies
    • Roots are currently implicit in JDT
    • Could possibly be made a view option later
  • Progress.gif Filtering could be added later:
    • only modified modules
    • only main modules (i.e., no test-only dependencies)
  • Ok green.gif The two compartments are essentially master-detail
    • Progress.gif After adding a reads module under Details, it is likely that details for that module need to be added next. So perhaps some navigation from right to left is useful, too ("Select in All Modules") deferred
  • withdrawn: I played with arrow up/down icons to signify the two directions: exposing packages to other modules, and reading from other another module. Import/Export wizards, e.g., use diagonal arrows, is that better?
  • withdrawn: The Details compartment is a table, 2nd column being initially filled from tiny dialogs behind the buttons Expose Package / Read Module....
  • Ok green.gif Qualifications of exports / opens are listed as child nodes (modules), has-child indicator should suffice to signal the qualification
  •  ?? For patching, I would intuitively expect only one pattern: add a source folder of the current project into a given module on the module path.
    • For maximum flexibility we could also support to patch a module with another project, or just a source folder of that project.
    • Till suggested to only support project (meaning: all its source folders)
  • Ok green.gif when patching a module, that patched module should move to the top of the LHS list (it is now the current module)

Tests

  • Many aspects of the above should consider the distinction main/test sources, how exactly is a tricky question.
    • Ok green.gif Each modification dialog will have a checkbox "[x] Test only".
    • Progress.gif Alternatively, the entire page could have two filtered views, selectable by a drop down [main/test] - deferred / may not be needed due to individual checkboxes in dialogs
      • Changes made in view "main" are global
      • Changes made in view "test" are not visible in view "main"
    • Ok green.gif Use dark gray icons like in Package Explorer

Functionality Discussion

I do hope that this one page can eventually fully replace the existing Module dialog (hidden behind "Is modular"), and also cover the additional use cases discussed above.

  • We seem to loose the visualization of explicitly and implicitly included modules, so, we'd have to make up our minds what happens if the user tries to remove a module that is implicitly included because another included module depends on it (refuse to remove? remove with full path of incoming dependencies? ...)
  • --add-reads is now universally applicable, we just need to add support for the "module" ALL-UNNAMED.
  • Test code could read ALL-UNNAMED by default, with the option to remove this.
  • Still missing: a location to specify the Main Class :(

Future

For test specific tweaks (which are in general not migration tools, but part of the architecture) I would still wish we had s.t. that looks like source code, easily compared in git etc. Is the proposed design blocking such future development?

Back to the top