Tagged Questions

The Eclipse Graphical Modeling Project (GMP) provides a set of generative components and runtime infrastructures for developing graphical editors based on EMF (emf) and GEF (eclipse-gef). http://www.eclipse.org/modeling/gmp/

learn more… | top users | synonyms

5
votes
2answers
6k views

How to get the project name in eclipse?

How do I get the name of the current eclipse project? I'm in a GMF view and need the projectname when some submenu of the popup menu ist used.
4
votes
2answers
1k views

Anyone have experience with Eclipse GMF?

I've just started to play around with Eclipse GMF. Has anyone used the framework? Any good or bad experiences you made using it? Any alternatives for graphical modeling you could suggest? EDIT: What ...
3
votes
3answers
614 views

Relationship between GEF and GMF?

I'm working on summary on the eclipse modeling project and its various sub - projects. It is not going to get published, it's sole purpose is to help my colleagues and above all my boss to get an ...
1
vote
0answers
80 views

Correct way to handle copy/paste from a View into a GraphicalEditor

We're developing an application in which we handle local copy/pastes within the diagram by using the extension point org.eclipse.gmf.runtime.emf.clipboard.core.clipboardSupport Copy/Paste events of ...
1
vote
0answers
123 views

Create nodes programatically in eclipse GMF

I'm developing an editor to design user Interfaces based on eclipse GMF. Up to now I have developed an editor with a palette. The user can drag and drop UI elements from pallet and design the UI on ...
1
vote
1answer
180 views

Tutorial for building a domain specific visual language using Eclipse

Is there an implementation example on how to build a domain specific visual language ( for example modeling a Petri-Net) using Eclipse?
1
vote
2answers
113 views

Saving UI design in XML format

We are developing an IDE (based on Eclipse GMF) to design user interfaces. Those Designs will be then saved in XML format. Is there any opensource tool available to do the same thing?
1
vote
2answers
175 views

EMF generate non-Java Code

Is there a way to generate from a ECore model code that is not Java? I have a meta-model that represent a html layout (forms, inputs, buttons) and I want to generate the html. How can I do this? What ...
1
vote
1answer
182 views

GMF runtime notation convert to EditPart

How can I receive from org.eclipse.gmf.runtime.notation.impl.ShapeImpl Object the corresponding EditPart? Or how can I receive from ShapeImpl(emf.ecore not runtime) the corresponding EditPart?
1
vote
0answers
77 views

Embed GMF generated editor into MasterDetailsBlock?

The canonical way to use the MasterDetailsBlock of the Eclipse Forms API is to use a table or tree viewer as master view. Has anyone ever attempted to use a GMF generated graphical editor as master ...
1
vote
1answer
147 views

How to export some controls of SWT to SVG pic?

If I have a TreeViewer or Table,or I have some buttons,labels which contain different text,pic and so on. Now,I want to export these to a SVG pic. Does anyone know about this? Many Thanks!
0
votes
0answers
57 views

GMF eclipse - gmfgraph Layouts

In gmfgraph I created following Polygon with label as child. Code: <actualFigure xsi:type="gmfgraph:Polygon"> <foregroundColor xsi:type="gmfgraph:RGBColor" ...
0
votes
0answers
25 views

Eclipse GMF - Empty mapping list

I am trying to create a GMF editor for a meta-model defined in ECORE. I am following one of the many available tutorial http://wiki.eclipse.org/Graphical_Modeling_Framework/Tutorial/Part_1. I am ...
0
votes
0answers
65 views

Eclipse plugin EMF, GMF, tabbed property section views

I am currently developing an eclipse plugin with the EMF and GMF frameworks that uses a tabbed property section to update the EMF model through the generated GMF diagram. I want to create another ...
0
votes
1answer
156 views

Graphical Modelling Framework does not work with Eclipse Indigo

I am following the GMF Tutorial in Eclipse Indigo, MacOSX. The following error occurred in the step to create the generator model: mindmap.gmfgen. In Eclipse Helios, there is no problem at all. I am ...
0
votes
1answer
86 views

Generate graphical representation of an XMI file

Is there an API that can give us the possibility to generate graphical representations from a given XMI file (which is an instantiation of an Ecore file (meta-model))?
0
votes
0answers
36 views

SetCommand.create bug in gmf editor (annotations)

I'm using the eclipse BPMN modeler code to create drag'n'drop annotations, and it's working fine excepted that when the annotation icon is added, the entire editor seems like "resetting" and two ...
0
votes
0answers
24 views

how to fetch particular instance of component in GMF

I want to check particular instance of component in GMF Like when i drag n drop a component from palette,i can drop multiple instance of that component.I can fetch visual id of component but how to ...
0
votes
0answers
17 views

What algorithm is used in GMFDirectedGraphLayout and EdgesRouter?

What/which algorithm is used in GMFDirectedGraphLayout, DirectedGraphLayout and EdgesRouter? My current guess is that they use the same algorithm as GraphViz: A Technique for Drawing Directed ...
0
votes
1answer
41 views

How to allow a view to listen to selection of other views?

I'm developing a plugin with EMF and GMF. It has two views and I want that when one element is selected in the first one the second is refreshed. Actually I used this command: ...
0
votes
1answer
166 views

How to add new Element/Palette Component directly in GMF .gmfgen file

I have created a entire model and then got the diagram generated code. Now I realized that I need to add more components in Palette. But I have already carried out lot of modifications in the already ...
0
votes
1answer
58 views

What is this error Phantom nodes that are not targeted by a link mapping representing containment reference present in model

When i am generating gmfgen model from gmfmap this error validation is shown." Phantom nodes that are not targeted by a link mapping representing containment reference present in model. " What is the ...
0
votes
0answers
16 views

How to make a component non drop target in GMF

Is it possible to make a component as a non drop target i.e. i have dropped one component in my GMF Editor.I want to make it as a non droppable target object so that any other component can not be ...
0
votes
0answers
24 views

How to identify any Particular Component from GMF Editor

We have a component named Button. Now when we drop the button component twice over GMF Editor, both looks same and class/instances are same. Now how can I identify the difference between the both ...
0
votes
0answers
17 views

Superimposing of component in GMF Editor

I have created a GMF shape diagram application.Is there any way to restrict superimposing of component for example i have dragged a rectangle to editor and i want that any other component should not ...
0
votes
0answers
20 views

How to stop super imposing/over writing component in GMF

I got a sample GMF application from net regarding Shape. Now All the component can be place above each other. Means we can place Component Elliptical over Component Rectangle. How to stop doing the ...
0
votes
1answer
38 views

How To Obtain All the Nodes and Connections After Launching the GMF Project

After launching the GMF project, I get a new window to make my own model. After placing some nodes and connections, I should calculate according to their attributes. At first, HOW can I obtain all ...
0
votes
0answers
94 views

Code genration with GMF & Xpand

I am trying to integrate GMF & Xpand code generation.But i am not getting the way that how to connect GMF Model to Xpand. Basically i want that when i drag & drop component from palette code ...
0
votes
1answer
159 views

Serialize Eclipse Graphical Models (e.g. BPMN Diagram) to XML

I'm working on a project where I have to build a graphical process modeler for a proprietary BPM (business process management) system made in java. I'm mentioning that the software is proprietary ...
0
votes
0answers
91 views

GMF Change the Background Color of a Node Dynamically

I have a problem in GMF about changing the background color of a node dynamically. I know it has been discussed in the community. But I still don't figure out how I can get it. In my model, this is a ...
0
votes
0answers
18 views

Using composition of nodes instead of links

I want to know if there is a chance to use gmf to edit models, that uses compositions instead of link representation. For example (in use case uml diagram, as the system contains the cases, and not as ...
0
votes
1answer
87 views

How to identify top node references in GMF editors

I'm developing a graphical editor using Eclipse GMF.The model is developed from a xml schema. According to the schema A,B,C,D elements are included in element E and E is included in element F.I have ...
0
votes
1answer
124 views

Starting with Eclipse GMF

I'm new to Eclipse GMF and I was able to complete the mind map tutorial successfully. After that, I started developing a graphical editor using it.I've generated the domain model using a XML schema. ...
0
votes
0answers
137 views

Adding dynamically generated EMF classes to GMF Diagram palette

I have an object which is mapped to be a diagram element in GMF. I'm generating several EMF dynamic classes that inherit from this parent class. Is there any way to add these dynamically created ...
0
votes
1answer
155 views

integrating gmf with xpand oaw

trying to integrate gmf with xpand. I created a menu, and command using extensions in gmf manifest file. and am trying to invoke xpand generator. The code for the command is as shown below public ...
0
votes
1answer
83 views

Get URI of RSM Diagram Elements

I would like to be able to programmatically retrieve the same URI that is available through BIRT (getURI). I am developing an Rational Software Modeler plug-let and need to get the unique identifier ...
0
votes
1answer
209 views

Integrate JET Templates to an EMF-GMF plugin

I created an plugin that lets me model JSF Applications. I created it using Emfatic, Ecore, EMF, GMF. So now i have 5 projects in my workspace: myapp myapp.diagram myapp.edit myapp.editor myapp.tests ...
0
votes
1answer
229 views

How can i iterate throught my emf model from a gmf editor without parsing the xml model file?

I have successfully created a GMF editor which draws models based on my EMF model.What i wanted to do is to iterate through my model's EClasses .Can this be achieved at runtime through my plugin code ...
0
votes
1answer
224 views

Eclipse Plugin: OutlineView

A have a plugin and I want to overwrite default Outline view but I want to use some features from default Outline(Overview), where can I get the source Code of default OutlineView implementation?
0
votes
1answer
302 views

GMF live constraints - validation

I have an emf model and i'd like to make a GMF editor to create instances of this metamodel.I'd like also some live constraints to avoid some connections between the components of my EMF model.e.g:My ...
0
votes
2answers
797 views

One EditPart for all model views (in GMF/GEF)

We're working on creating a modeling tool based on the GMF framework and tools. We have a requirement to allow users to add views (figures) at runtime and use them in their diagrams. We will be using ...