Difference between revisions of "Scout/Concepts"
< Scout
(→Samples) |
Dev.jmini.fr (Talk | contribs) (new version of the page (old content is available on other pages)) |
||
Line 2: | Line 2: | ||
{{ScoutPage|cat=Concepts}} | {{ScoutPage|cat=Concepts}} | ||
− | + | The Concepts pages define concepts and elements used in the Eclipse Scout Framework. | |
− | + | ||
− | + | ||
− | + | ||
− | = | + | == Plug-ins == |
− | Scout | + | [[Image:Scout Client Shared Server.png]] |
− | + | A Scout project is composed of different Eclipse plug-ins. (each plug-in is an Eclipse Project) | |
+ | * {{ScoutLink|Concepts|Client Plug-In|Client Plug-In}} (eg <code>your.application.client</code>) | ||
+ | * {{ScoutLink|Concepts|Shared Plug-In|Shared Plug-In}} (eg <code>your.application.shared</code>) | ||
+ | * {{ScoutLink|Concepts|Server Plug-In|Server Plug-In}} (eg <code>your.application.server</code>) | ||
− | + | The Scout runtime rely on {{ScoutLink|Concepts|Separation UI and GUI|separation of UI and GUI}}. Therefore additional plug-ins are required: | |
+ | * SWT UI Plug-In (eg <code>your.application.ui.swt</code>) | ||
+ | * Swing UI Plug-In (eg <code>your.application.ui.swing</code>) | ||
− | + | == Client == | |
− | + | {{note|TODO|Main concepts in the client}} | |
− | == Client | + | |
− | + | ||
− | == | + | == Server == |
− | + | {{note|TODO|Main concepts in the Server}} | |
− | == | + | == Shared == |
− | + | {{note|TODO|Main concepts in the Shared}} | |
− | == | + | == See also == |
− | + | *[[:Category:Scout_Concepts|All Eclipse Scout Concepts]] | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | * | + | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + |
Revision as of 11:55, 5 June 2011
Scout |
Wiki Home |
Website |
Download • Git |
Community |
Forums • Blog • Twitter • G+ |
Bugzilla |
Bugzilla |
The Concepts pages define concepts and elements used in the Eclipse Scout Framework.
Contents
Plug-ins
A Scout project is composed of different Eclipse plug-ins. (each plug-in is an Eclipse Project)
- Client Plug-In (eg
your.application.client
) - Shared Plug-In (eg
your.application.shared
) - Server Plug-In (eg
your.application.server
)
The Scout runtime rely on separation of UI and GUI. Therefore additional plug-ins are required:
- SWT UI Plug-In (eg
your.application.ui.swt
) - Swing UI Plug-In (eg
your.application.ui.swing
)
Client
Server