Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "MoDisco/Components/JEE/Architecture/0.9"

m
(Class Architecture)
Line 1: Line 1:
 
{{MoDiscoTabs|JEE|0|0|1}}
 
{{MoDiscoTabs|JEE|0|0|1}}
 
=Class Architecture=
 
=Class Architecture=
 +
 +
[[Image:ClassDiagramForDeploymentDescriptorDiscoverer.jpg|frame|center|Class Diagram for Deployment Descriptor Discoverers]]
 +
 +
 +
In order to apply a single file discoverer directly to a project, we use the ProjectDeploymentDescriptorDiscoverer.
 +
* It lists all the xml files in the containers
 +
* It retrieves the Discoverer to be used with getSingleFileDiscoverer()
 +
* It applies the discoverer to every xml files listed and store the returned resource
 +
* It merges all the resources and open the result using the factory obtained with getDiscovererFactory()

Revision as of 05:50, 8 July 2010

MoDisco
Website
Download
Community
Mailing ListForums
Bugzilla
Open
Help Wanted
Bug Day
Contribute
Browse SourceProject Set File

Class Architecture

Class Diagram for Deployment Descriptor Discoverers


In order to apply a single file discoverer directly to a project, we use the ProjectDeploymentDescriptorDiscoverer.

  • It lists all the xml files in the containers
  • It retrieves the Discoverer to be used with getSingleFileDiscoverer()
  • It applies the discoverer to every xml files listed and store the returned resource
  • It merges all the resources and open the result using the factory obtained with getDiscovererFactory()

Back to the top