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 "EMF/SinglePageEditor"

< EMF
m
(Classes)
Line 5: Line 5:
 
Usually the example and the default setup of the genmodel produces a multiple page editor. For the generation of a singel page editor you have to set the attribute "Multiple Page Editor" to false. This attribute is on package level, in this case the Library package.
 
Usually the example and the default setup of the genmodel produces a multiple page editor. For the generation of a singel page editor you have to set the attribute "Multiple Page Editor" to false. This attribute is on package level, in this case the Library package.
  
= Classes  =
+
= Files =
 +
== Classes  ==
 
The code generator produces just the following 4 classes:
 
The code generator produces just the following 4 classes:
  
Line 13: Line 14:
 
* LibraryEditorPlugin  - The plugin class. A subclass of EMFPlugin.
 
* LibraryEditorPlugin  - The plugin class. A subclass of EMFPlugin.
  
[[Category:Modeling]] [[Category:EMF]]
+
== Other Files  ==
  
 +
The related plug-in files files are created be the generator too.
 +
 +
* plugin.xml
 +
* plugin.properties
 +
* build.properties
 +
* META-INF/MANIFEST.MF
 +
* icons/*
 +
 +
[[Category:Modeling]] [[Category:EMF]]
  
 
= LibraryEditor =
 
= LibraryEditor =

Revision as of 06:49, 25 December 2010

This page gives you an overview of an unmodified EMF (single page) editor (inc. a wizard) generated with EMF 2.6

The example is created based on the Generating an EMF Model example. You can find the source code and in this context the "library.editor" plugin / project e.g. here.

Usually the example and the default setup of the genmodel produces a multiple page editor. For the generation of a singel page editor you have to set the attribute "Multiple Page Editor" to false. This attribute is on package level, in this case the Library package.

Files

Classes

The code generator produces just the following 4 classes:

  • LibraryEditor - The editor class itself.
  • LibraryActionBarContributor - The ActionBarContributor of the editor.
  • LibraryModelWizard - The wizard implementation ( find in File | New | Other... )
  • LibraryEditorPlugin - The plugin class. A subclass of EMFPlugin.

Other Files

The related plug-in files files are created be the generator too.

  • plugin.xml
  • plugin.properties
  • build.properties
  • META-INF/MANIFEST.MF
  • icons/*

LibraryEditor

TODO

LibraryActionBarContributor

TODO

Back to the top