Xtext-Sirius-integration

Created: 2011-07-07 15:06
Updated: 2019-01-08 19:10

README.md

Xtext Sirius Embedded Editor Example

This plug-in contains a basic framework easing the embedding of an Xtext editor inside a diagram representation created with Sirius.
This is not needed at all to load Xtext models and create diagrams on top of those, this functionnaliy is provided by the Sirius project itself in its update-site.

Features

Screenshot of diagram without embedded text editor

Screenshot of diagram with embedded text editor

Requires

  • Eclipse Sirius 1.x
  • Xtext 2.x

How to

  • Create a tool in your modeler, and in the model operation, add an External Java Action Call and set OpenEmbeddedEditor as id.
  • Extends OpenXtextEmbeddedEditor to bind your Xtext model.
import org.eclipse.xtext.example.domainmodel.ui.internal.DomainmodelActivator;
import com.google.inject.Injector;
import org.obeonetwork.dsl.viewpoint.xtext.support.action.OpenXtextEmbeddedEditor;

public class OpenEmbeddedEditor extends OpenXtextEmbeddedEditor {
	@Override
	protected Injector getInjector() {
		return  DomainmodelActivator.getInstance().getInjector("org.eclipse.xtext.example.domainmodel.Domainmodel");
	}
}
  • register your java action
   <extension point="org.eclipse.sirius.externalJavaAction">
      <javaActions
            actionClass="com.yourcompany.OpenEmbeddedEditor"
            id="OpenEmbeddedEditor">
      </javaActions>
   </extension>

Known limitation

Cookies help us deliver our services. By using our services, you agree to our use of cookies Learn more