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 "Eclipse4/RCP/Modeled UI/Model Elements"

< Eclipse4‎ | RCP‎ | Modeled UI
(Abstract Elements)
(Abstract Elements)
Line 7: Line 7:
 
*<tt>MContribution</tt>
 
*<tt>MContribution</tt>
 
*<tt>MElementContainer</tt>
 
*<tt>MElementContainer</tt>
 +
*<tt>MGenericStack</tt>
 
*<tt>MGenericTile</tt>
 
*<tt>MGenericTile</tt>
 
*<tt>MUIElement</tt>
 
*<tt>MUIElement</tt>
 
*<tt>MUILabel</tt>
 
*<tt>MUILabel</tt>

Revision as of 14:59, 12 April 2011

The Eclipse 4 model is made up of a number of interfaces. All of these interfaces begin with the letter 'M' and expose a number of getter and setter methods. The model is built up of a number of abstract interfaces that are extended by a set of concrete interfaces.

Abstract Elements

The abstract interfaces provides generic attributes that are expected to be needed by many different model elements.

  • MApplicationElement
  • MContribution
  • MElementContainer
  • MGenericStack
  • MGenericTile
  • MUIElement
  • MUILabel

Back to the top