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

WTP UX Whiteboard

Revision as of 10:37, 20 May 2008 by Kaloyan.raev.sap.com (Talk | contribs) (Procedure)

The goal of this wiki page is to collect and summarize all ideas for User Experience improvements in WTP.

Procedure

Each UX improvement idea should be described briefly on this wiki page. For each UX improvement idea there should be a Bugzilla enhancement entry created. There should happen things like:

  • detailed description: design documents, screenshots, etc.
  • discussions
  • votes and decision whether to put the idea in the WTP Requirement Plan.

In case the idea evolves significantly in Bugzilla, this should be reflected in its brief description on this wiki page.

UX ideas

Java EE scenarios

Java EE patterns

Tools for easy EJB testing

EJB developers would appreciate tools that enables them to easily test developed EJB artifacts. Such tools could be:

  • a framework for generating JUnit test stubs out from EJB beans.
  • a lightweight EJB container that runs locally and enables developers to test their EJB beans without a need of full-blown Java EE application server.
  • an integration between the JUnit generation framework and the lightweight EJB container where the tests would be executed.

Index search for Java EE metadata

We are all familiar with the Open Type and Open Resource index searches in the workbench and how useful they are when we try to quickly locate our files and Java classes in the huge project we are working with. The Java EE perspective should naturally evolve these features to Java EE metadata index search, where developers can search for certain metadata in their Java EE projects.

These new feature should introduce new dialog box that looks similar to the Open Type and Open Resource dialogs. There should be a hotkey combination available that enables users to quickly call the dialog. Typing a portion of the Java EE metadata name or description should filter the available Java EE artifacts and assist the user choice.

Examples for Java EE metadata are:

  • EJB beans
  • Web servlets
  • EJB references
  • Security roles

Context-sensitive view with possible high level actions

Developing an end-to-end Java EE scenario involves many steps. It is a common situation for non-experienced Java EE developers to ask themselves: "OK. I have generated the JPA entity for my DB table. Now, what's next?". It is true that the context menus of the editors and Project Navigator contain Java EE-specific actions, but they are somehow lost for the user in the whole bunch of context-menu actions. The Java EE perspective should provide a special view that guides and hints developers with the possible Java EE-specific steps they could execute. For example: "Generate Session facade from JPA entity".

Here are some of the characteristics that should for required for the view:

  • Context-sensitive. Only the actions relevant for the current (on focus) artifacts should be displayed in the view.
  • Sections. Available actions should be grouped in sections by relevance criteria, e.g. JPA, JSF, EJB related actions.
  • Extensibility. Adopters should be able to contribute their own specific actions and sections to the view.

Back to the top