Home » Modeling » GMF (Graphical Modeling Framework) » GMF RCP Application Guide Request
GMF RCP Application Guide Request [message #86358] |
Tue, 19 December 2006 05:08  |
Eclipse User |
|
|
|
Originally posted by: christian.daenekas.informatik.uni-oldenburg.de
Hi there!
I did a search on the support of generating a GMF application without
the eclipse IDE dependencies. While there is some info around about
building RCP applications, it´s often concerned with very special issues
.. So my request is a general guide about building an GMF RCP application
supporting all features that can be used when using the GMF editor
application within eclipse. I´m using 2.0M2 and my GMF application must
be integrated into an existing RCP application, so I think it should be
the right approach to generate RCP code to get rid of "evil"
dependencies. This could also be the base for a comprehensive RCP Guide
for the 2.0 release. I think there are many people interested in
something like this. If such a guide already exists and I was to blind
to see it, forget what I said ;). Looking forward to your support.
Thanks in advance,
Christian Dänekas
|
|
| | | | | | | |
Re: GMF RCP Application Guide Request [message #87010 is a reply to message #86994] |
Thu, 21 December 2006 06:51   |
Eclipse User |
|
|
|
Originally posted by: 5d5.mail.ru
This wizard page is generated in later builds - after the date request
was closed; please take the last GMF build. It really makes no sense to
install early builds and wonder why some features are missing.
Christian Dänekas wrote:
> Hi Alex,
>
> The GMF version I downloaded is M3 for sure, but apart from that I was
> confused because the Dialog I searched for seemed to be present since
> some time according to some posts I read. I now tried the approach
> suggested at
> http://dev.eclipse.org/newslists/news.eclipse.modeling.gmf/m sg01533.html
> .. I just added a GenApplication Child to my gmfgen model and generated
> the diagram code. Most of it seems to be failure free. But there is a
> Problem with a Wizard Class that can not be resolved. The import of
> org.eclipse.ui.dialogs.WizardNewFileCreationPage fails and causes a
> bunch of additional errors. Do you have an idea what up with that? The
> fault is located in my EditorCreationWizardPage Class, which look like this:
>
> package de.permeter.analysis.editor.diagram.part;
>
> import org.eclipse.core.runtime.IPath;
> import org.eclipse.jface.viewers.IStructuredSelection;
> import org.eclipse.swt.widgets.Composite;
> import org.eclipse.ui.dialogs.WizardNewFileCreationPage;
>
> /**
> * @generated
> */
> public class EditorCreationWizardPage extends WizardNewFileCreationPage {
>
> /**
> * @generated
> */
> private static final String DOMAIN_EXT = ".editor"; //$NON-NLS-1$
>
> /**
> * @generated
> */
> private static final String DIAGRAM_EXT = ".editor_diagram"; //$NON-NLS-1$
>
> /**
> * @generated
> */
> public EditorCreationWizardPage(String pageName,
> IStructuredSelection selection) {
> super(pageName, selection);
> }
>
> /**
> * @generated
> */
> protected String getDefaultFileName() {
> return "default"; //$NON-NLS-1$
> }
>
> /**
> * @generated
> */
> public String getFileName() {
> String fileName = super.getFileName();
> if (fileName != null && !fileName.endsWith(DIAGRAM_EXT)) {
> fileName = DIAGRAM_EXT;
> }
> return fileName;
> }
>
> /**
> * @generated
> */
> private String getUniqueFileName(IPath containerPath, String fileName) {
> String newFileName = fileName;
> IPath diagramFilePath = containerPath.append(newFileName DIAGRAM_EXT);
> IPath modelFilePath = containerPath.append(newFileName DOMAIN_EXT);
> int i = 1;
> while (exists(diagramFilePath) || exists(modelFilePath)) {
> i;
> newFileName = fileName i;
> diagramFilePath = containerPath.append(newFileName DIAGRAM_EXT);
> modelFilePath = containerPath.append(newFileName DOMAIN_EXT);
> }
> return newFileName;
> }
>
> /**
> * @generated
> */
> public void createControl(Composite parent) {
> super.createControl(parent);
> IPath path = getContainerFullPath();
> if (path != null) {
> String fileName = getUniqueFileName(path, getDefaultFileName());
> setFileName(fileName);
> } else {
> setFileName(getDefaultFileName());
> }
> setPageComplete(validatePage());
> }
>
> /**
> * @generated
> */
> protected boolean validatePage() {
> if (super.validatePage()) {
> String fileName = getFileName();
> if (fileName == null) {
> return false;
> }
> fileName = fileName.substring(0, fileName.length()
> - DIAGRAM_EXT.length())
> DOMAIN_EXT;
> IPath path = getContainerFullPath().append(fileName);
> if (exists(path)) {
> setErrorMessage("Model file already exists: "
> path.lastSegment());
> return false;
> }
> return true;
> }
> return false;
> }
>
> /**
> * @generated
> */
> public static boolean exists(IPath path) {
> return path.toFile().exists();
> }
> }
>
>
> I hope someone can help.
>
> Thanks,
> Christian
>
> Alex Shatalin schrieb:
>> Hello Christian,
>>
>> As far as i can see from
>> http://wiki.eclipse.org/index.php/GMF_New_and_Noteworthy#2.0 _M4 RCP
>> application generation support was added in GMF M4 milestone (was not
>> released yet). In the same time you are using GMF 20061117 (looks like
>> it is some stable build, even not M3 which was released 20-11). So I
>> suggest you to take one of the latest integtation builds from
>> http://download.eclipse.org/modeling/gmf/downloads/drops/I-I 20061218-200612181200/index.php
>> (be carefull with the dependencies - it requires Eclipse M4 and
>> integration build of EMF) or wait for GMF M4.
>>
>> -----------------
>> Alex Shatalin
>>
>>
|
|
| | | | |
Re: GMF RCP Application Guide Request [message #87345 is a reply to message #87128] |
Fri, 22 December 2006 08:43   |
Eclipse User |
|
|
|
Originally posted by: christian.daenekas.informatik.uni-oldenburg.de
Hello again,
today I tried to generate a editor application after I added my
validation stuff (Audit Containers etc,) to my models. Everything
concerned with code generation works fine so far, but I get an
unresolvable import in my ValidationProvider class. The import that
doesn´t work is
"org.eclipse.ui.actions.WorkspaceModifyDelegatingOperation". Is this a
GMF bug? Of course I can´t run my application because of this, so I´m
desperate for help. I also searched after the concerned class, but I
found no explanation or hint what is wrong.
Thanks in advance,
Christian
Dmitry Stadnik schrieb:
> In my setup I have 63 binary plugins + gmf runtime without *.ide plugins
> and that's all. We may throw away some parts such as geoshapes and
> something from emf but there still be a lot of bytecode (((
>
> I also think that we may ask to break down gmf runtime in smaller pieces
> to ease RCP developers efforts.
>
> Christian Dänekas wrote:
>> Alex and Dmitry,
>>
>> I tried the latest stream integration build
>> ( http://download.eclipse.org/modeling/gmf/downloads/drops/I-I 20061218-200612181200/index.php).
>> The dialog still doesn´t show up. I tried the thing with the
>> GenApplication Child in the gmfgen model again and this time the code
>> was build without errors and I got an application with my editor which I
>> can run from eclipse. Is this the same you get when using the RCP from
>> the dialog that is hiding from me? My plans are to integrate the editor
>> application as a perspective into a RCP application. Of course when I
>> run the RCP app now I don´t have a proper perspective to use the editor
>> in. I can select the editor by selection a perspective called Resource,
>> which worked before as well. But now I can create a editor document
>> without the need for a project, which is pretty neat. But I noticed that
>> the editor application still needs a total of 85 plugins to run. Is this
>> normal or did I something wrong. Do you have links to useful documents
>> that show how to integrate a GMF editor into a RCP application ?
>>
>> Thanks for your help,
>> Christian
>>
>> Alex Shatalin schrieb:
>>> Hello Christian,
>>>
>>> Yes, you need latest stable build - RCP support was not fully included
>>> into M3.
>>>
>>> -----------------
>>> Alex Shatalin
>>>
>>>
|
|
|
Re: GMF RCP Application Guide Request [message #87419 is a reply to message #87345] |
Fri, 22 December 2006 10:14   |
Eclipse User |
|
|
|
Originally posted by: 5d5.mail.ru
Use IRunnableWithProgress instead.
Christian Dänekas wrote:
> Hello again,
>
> today I tried to generate a editor application after I added my
> validation stuff (Audit Containers etc,) to my models. Everything
> concerned with code generation works fine so far, but I get an
> unresolvable import in my ValidationProvider class. The import that
> doesn´t work is
> "org.eclipse.ui.actions.WorkspaceModifyDelegatingOperation". Is this a
> GMF bug? Of course I can´t run my application because of this, so I´m
> desperate for help. I also searched after the concerned class, but I
> found no explanation or hint what is wrong.
>
> Thanks in advance,
> Christian
>
> Dmitry Stadnik schrieb:
>> In my setup I have 63 binary plugins + gmf runtime without *.ide plugins
>> and that's all. We may throw away some parts such as geoshapes and
>> something from emf but there still be a lot of bytecode (((
>>
>> I also think that we may ask to break down gmf runtime in smaller pieces
>> to ease RCP developers efforts.
>>
>> Christian Dänekas wrote:
>>> Alex and Dmitry,
>>>
>>> I tried the latest stream integration build
>>> ( http://download.eclipse.org/modeling/gmf/downloads/drops/I-I 20061218-200612181200/index.php).
>>> The dialog still doesn´t show up. I tried the thing with the
>>> GenApplication Child in the gmfgen model again and this time the code
>>> was build without errors and I got an application with my editor which I
>>> can run from eclipse. Is this the same you get when using the RCP from
>>> the dialog that is hiding from me? My plans are to integrate the editor
>>> application as a perspective into a RCP application. Of course when I
>>> run the RCP app now I don´t have a proper perspective to use the editor
>>> in. I can select the editor by selection a perspective called Resource,
>>> which worked before as well. But now I can create a editor document
>>> without the need for a project, which is pretty neat. But I noticed that
>>> the editor application still needs a total of 85 plugins to run. Is this
>>> normal or did I something wrong. Do you have links to useful documents
>>> that show how to integrate a GMF editor into a RCP application ?
>>>
>>> Thanks for your help,
>>> Christian
>>>
>>> Alex Shatalin schrieb:
>>>> Hello Christian,
>>>>
>>>> Yes, you need latest stable build - RCP support was not fully included
>>>> into M3.
>>>>
>>>> -----------------
>>>> Alex Shatalin
>>>>
>>>>
|
|
|
Re: GMF RCP Application Guide Request [message #87448 is a reply to message #87419] |
Fri, 22 December 2006 11:11   |
Eclipse User |
|
|
|
Originally posted by: christian.daenekas.informatik.uni-oldenburg.de
Okay,
I´ve just noticed that the error was caused by a missing dependency to
org.eclipse.ui.ide . The problem at runtime is that the diagrams can´t
be validated. When using the code generation that fits for executing the
editor in eclipse itself, a menu "Diagram" appears, when the diagram is
in focus. Within this menu you can choose "Validate" and the Diagram is
validated using the audits/constraints that I have implemented in java.
However there is no "Validate" option when generated and executed as an
RCP application. And if I use the editor plugins inside the sdk, the
validate option still appears but doesn´t have any effect. My question,
if this is normal and I have to look into creating the Validate action
myself or did I something wrong and my application is broken?
Greetings,
Christian
Dmitry Stadnik schrieb:
> Use IRunnableWithProgress instead.
>
> Christian Dänekas wrote:
>> Hello again,
>>
>> today I tried to generate a editor application after I added my
>> validation stuff (Audit Containers etc,) to my models. Everything
>> concerned with code generation works fine so far, but I get an
>> unresolvable import in my ValidationProvider class. The import that
>> doesn´t work is
>> "org.eclipse.ui.actions.WorkspaceModifyDelegatingOperation". Is this a
>> GMF bug? Of course I can´t run my application because of this, so I´m
>> desperate for help. I also searched after the concerned class, but I
>> found no explanation or hint what is wrong.
>>
>> Thanks in advance,
>> Christian
>>
>> Dmitry Stadnik schrieb:
>>> In my setup I have 63 binary plugins + gmf runtime without *.ide plugins
>>> and that's all. We may throw away some parts such as geoshapes and
>>> something from emf but there still be a lot of bytecode (((
>>>
>>> I also think that we may ask to break down gmf runtime in smaller pieces
>>> to ease RCP developers efforts.
>>>
>>> Christian Dänekas wrote:
>>>> Alex and Dmitry,
>>>>
>>>> I tried the latest stream integration build
>>>> ( http://download.eclipse.org/modeling/gmf/downloads/drops/I-I 20061218-200612181200/index.php).
>>>> The dialog still doesn´t show up. I tried the thing with the
>>>> GenApplication Child in the gmfgen model again and this time the code
>>>> was build without errors and I got an application with my editor which I
>>>> can run from eclipse. Is this the same you get when using the RCP from
>>>> the dialog that is hiding from me? My plans are to integrate the editor
>>>> application as a perspective into a RCP application. Of course when I
>>>> run the RCP app now I don´t have a proper perspective to use the editor
>>>> in. I can select the editor by selection a perspective called Resource,
>>>> which worked before as well. But now I can create a editor document
>>>> without the need for a project, which is pretty neat. But I noticed that
>>>> the editor application still needs a total of 85 plugins to run. Is this
>>>> normal or did I something wrong. Do you have links to useful documents
>>>> that show how to integrate a GMF editor into a RCP application ?
>>>>
>>>> Thanks for your help,
>>>> Christian
>>>>
>>>> Alex Shatalin schrieb:
>>>>> Hello Christian,
>>>>>
>>>>> Yes, you need latest stable build - RCP support was not fully included
>>>>> into M3.
>>>>>
>>>>> -----------------
>>>>> Alex Shatalin
>>>>>
>>>>>
|
|
|
Re: GMF RCP Application Guide Request [message #101763 is a reply to message #87448] |
Tue, 06 February 2007 16:09   |
Eclipse User |
|
|
|
Hi Christian,
I've exactly the same problem.
Regards,
Hugues
Christian Dänekas a écrit :
> Okay,
>
> I´ve just noticed that the error was caused by a missing dependency to
> org.eclipse.ui.ide . The problem at runtime is that the diagrams can´t
> be validated. When using the code generation that fits for executing the
> editor in eclipse itself, a menu "Diagram" appears, when the diagram is
> in focus. Within this menu you can choose "Validate" and the Diagram is
> validated using the audits/constraints that I have implemented in java.
> However there is no "Validate" option when generated and executed as an
> RCP application. And if I use the editor plugins inside the sdk, the
> validate option still appears but doesn´t have any effect. My question,
> if this is normal and I have to look into creating the Validate action
> myself or did I something wrong and my application is broken?
>
> Greetings,
> Christian
>
> Dmitry Stadnik schrieb:
>> Use IRunnableWithProgress instead.
>>
>> Christian Dänekas wrote:
>>> Hello again,
>>>
>>> today I tried to generate a editor application after I added my
>>> validation stuff (Audit Containers etc,) to my models. Everything
>>> concerned with code generation works fine so far, but I get an
>>> unresolvable import in my ValidationProvider class. The import that
>>> doesn´t work is
>>> "org.eclipse.ui.actions.WorkspaceModifyDelegatingOperation". Is this a
>>> GMF bug? Of course I can´t run my application because of this, so I´m
>>> desperate for help. I also searched after the concerned class, but I
>>> found no explanation or hint what is wrong.
>>>
>>> Thanks in advance,
>>> Christian
>>>
>>> Dmitry Stadnik schrieb:
>>>> In my setup I have 63 binary plugins + gmf runtime without *.ide plugins
>>>> and that's all. We may throw away some parts such as geoshapes and
>>>> something from emf but there still be a lot of bytecode (((
>>>>
>>>> I also think that we may ask to break down gmf runtime in smaller pieces
>>>> to ease RCP developers efforts.
>>>>
>>>> Christian Dänekas wrote:
>>>>> Alex and Dmitry,
>>>>>
>>>>> I tried the latest stream integration build
>>>>> ( http://download.eclipse.org/modeling/gmf/downloads/drops/I-I 20061218-200612181200/index.php).
>>>>> The dialog still doesn´t show up. I tried the thing with the
>>>>> GenApplication Child in the gmfgen model again and this time the code
>>>>> was build without errors and I got an application with my editor which I
>>>>> can run from eclipse. Is this the same you get when using the RCP from
>>>>> the dialog that is hiding from me? My plans are to integrate the editor
>>>>> application as a perspective into a RCP application. Of course when I
>>>>> run the RCP app now I don´t have a proper perspective to use the editor
>>>>> in. I can select the editor by selection a perspective called Resource,
>>>>> which worked before as well. But now I can create a editor document
>>>>> without the need for a project, which is pretty neat. But I noticed that
>>>>> the editor application still needs a total of 85 plugins to run. Is this
>>>>> normal or did I something wrong. Do you have links to useful documents
>>>>> that show how to integrate a GMF editor into a RCP application ?
>>>>>
>>>>> Thanks for your help,
>>>>> Christian
>>>>>
>>>>> Alex Shatalin schrieb:
>>>>>> Hello Christian,
>>>>>>
>>>>>> Yes, you need latest stable build - RCP support was not fully included
>>>>>> into M3.
>>>>>>
>>>>>> -----------------
>>>>>> Alex Shatalin
>>>>>>
>>>>>>
|
|
|
Re: GMF RCP Application Guide Request [message #102085 is a reply to message #101763] |
Wed, 07 February 2007 10:34   |
Eclipse User |
|
|
|
Originally posted by: christian.daenekas.informatik.uni-oldenburg.de
You might like to use the GMF 2.0 nightly version since it includes the
working Diagram validation functionality thanks to Dmitry.
Greetings,
Christian
Hugues Rerolle schrieb:
> Hi Christian,
>
> I've exactly the same problem.
>
> Regards,
>
> Hugues
>
>
> Christian Dänekas a écrit :
>> Okay,
>>
>> I´ve just noticed that the error was caused by a missing dependency to
>> org.eclipse.ui.ide . The problem at runtime is that the diagrams can´t
>> be validated. When using the code generation that fits for executing the
>> editor in eclipse itself, a menu "Diagram" appears, when the diagram is
>> in focus. Within this menu you can choose "Validate" and the Diagram is
>> validated using the audits/constraints that I have implemented in java.
>> However there is no "Validate" option when generated and executed as an
>> RCP application. And if I use the editor plugins inside the sdk, the
>> validate option still appears but doesn´t have any effect. My question,
>> if this is normal and I have to look into creating the Validate action
>> myself or did I something wrong and my application is broken?
>>
>> Greetings,
>> Christian
>>
>> Dmitry Stadnik schrieb:
>>> Use IRunnableWithProgress instead.
>>>
>>> Christian Dänekas wrote:
>>>> Hello again,
>>>>
>>>> today I tried to generate a editor application after I added my
>>>> validation stuff (Audit Containers etc,) to my models. Everything
>>>> concerned with code generation works fine so far, but I get an
>>>> unresolvable import in my ValidationProvider class. The import that
>>>> doesn´t work is
>>>> "org.eclipse.ui.actions.WorkspaceModifyDelegatingOperation". Is this a
>>>> GMF bug? Of course I can´t run my application because of this, so I´m
>>>> desperate for help. I also searched after the concerned class, but I
>>>> found no explanation or hint what is wrong.
>>>>
>>>> Thanks in advance,
>>>> Christian
>>>>
>>>> Dmitry Stadnik schrieb:
>>>>> In my setup I have 63 binary plugins + gmf runtime without *.ide plugins
>>>>> and that's all. We may throw away some parts such as geoshapes and
>>>>> something from emf but there still be a lot of bytecode (((
>>>>>
>>>>> I also think that we may ask to break down gmf runtime in smaller pieces
>>>>> to ease RCP developers efforts.
>>>>>
>>>>> Christian Dänekas wrote:
>>>>>> Alex and Dmitry,
>>>>>>
>>>>>> I tried the latest stream integration build
>>>>>> ( http://download.eclipse.org/modeling/gmf/downloads/drops/I-I 20061218-200612181200/index.php).
>>>>>> The dialog still doesn´t show up. I tried the thing with the
>>>>>> GenApplication Child in the gmfgen model again and this time the code
>>>>>> was build without errors and I got an application with my editor which I
>>>>>> can run from eclipse. Is this the same you get when using the RCP from
>>>>>> the dialog that is hiding from me? My plans are to integrate the editor
>>>>>> application as a perspective into a RCP application. Of course when I
>>>>>> run the RCP app now I don´t have a proper perspective to use the editor
>>>>>> in. I can select the editor by selection a perspective called Resource,
>>>>>> which worked before as well. But now I can create a editor document
>>>>>> without the need for a project, which is pretty neat. But I noticed that
>>>>>> the editor application still needs a total of 85 plugins to run. Is this
>>>>>> normal or did I something wrong. Do you have links to useful documents
>>>>>> that show how to integrate a GMF editor into a RCP application ?
>>>>>>
>>>>>> Thanks for your help,
>>>>>> Christian
>>>>>>
>>>>>> Alex Shatalin schrieb:
>>>>>>> Hello Christian,
>>>>>>>
>>>>>>> Yes, you need latest stable build - RCP support was not fully included
>>>>>>> into M3.
>>>>>>>
>>>>>>> -----------------
>>>>>>> Alex Shatalin
>>>>>>>
>>>>>>>
>
|
|
|
Re: GMF RCP Application Guide Request [message #102386 is a reply to message #102085] |
Thu, 08 February 2007 15:04  |
Eclipse User |
|
|
|
Hi Christian,
OK ! I'll try It, Thanks !
Hugues
Christian Dänekas a écrit :
> You might like to use the GMF 2.0 nightly version since it includes the
> working Diagram validation functionality thanks to Dmitry.
>
> Greetings,
> Christian
>
> Hugues Rerolle schrieb:
>> Hi Christian,
>>
>> I've exactly the same problem.
>>
>> Regards,
>>
>> Hugues
>>
>>
>> Christian Dänekas a écrit :
>>> Okay,
>>>
>>> I´ve just noticed that the error was caused by a missing dependency to
>>> org.eclipse.ui.ide . The problem at runtime is that the diagrams can´t
>>> be validated. When using the code generation that fits for executing the
>>> editor in eclipse itself, a menu "Diagram" appears, when the diagram is
>>> in focus. Within this menu you can choose "Validate" and the Diagram is
>>> validated using the audits/constraints that I have implemented in java.
>>> However there is no "Validate" option when generated and executed as an
>>> RCP application. And if I use the editor plugins inside the sdk, the
>>> validate option still appears but doesn´t have any effect. My question,
>>> if this is normal and I have to look into creating the Validate action
>>> myself or did I something wrong and my application is broken?
>>>
>>> Greetings,
>>> Christian
>>>
>>> Dmitry Stadnik schrieb:
>>>> Use IRunnableWithProgress instead.
>>>>
>>>> Christian Dänekas wrote:
>>>>> Hello again,
>>>>>
>>>>> today I tried to generate a editor application after I added my
>>>>> validation stuff (Audit Containers etc,) to my models. Everything
>>>>> concerned with code generation works fine so far, but I get an
>>>>> unresolvable import in my ValidationProvider class. The import that
>>>>> doesn´t work is
>>>>> "org.eclipse.ui.actions.WorkspaceModifyDelegatingOperation". Is this a
>>>>> GMF bug? Of course I can´t run my application because of this, so I´m
>>>>> desperate for help. I also searched after the concerned class, but I
>>>>> found no explanation or hint what is wrong.
>>>>>
>>>>> Thanks in advance,
>>>>> Christian
>>>>>
>>>>> Dmitry Stadnik schrieb:
>>>>>> In my setup I have 63 binary plugins + gmf runtime without *.ide plugins
>>>>>> and that's all. We may throw away some parts such as geoshapes and
>>>>>> something from emf but there still be a lot of bytecode (((
>>>>>>
>>>>>> I also think that we may ask to break down gmf runtime in smaller pieces
>>>>>> to ease RCP developers efforts.
>>>>>>
>>>>>> Christian Dänekas wrote:
>>>>>>> Alex and Dmitry,
>>>>>>>
>>>>>>> I tried the latest stream integration build
>>>>>>> ( http://download.eclipse.org/modeling/gmf/downloads/drops/I-I 20061218-200612181200/index.php).
>>>>>>> The dialog still doesn´t show up. I tried the thing with the
>>>>>>> GenApplication Child in the gmfgen model again and this time the code
>>>>>>> was build without errors and I got an application with my editor which I
>>>>>>> can run from eclipse. Is this the same you get when using the RCP from
>>>>>>> the dialog that is hiding from me? My plans are to integrate the editor
>>>>>>> application as a perspective into a RCP application. Of course when I
>>>>>>> run the RCP app now I don´t have a proper perspective to use the editor
>>>>>>> in. I can select the editor by selection a perspective called Resource,
>>>>>>> which worked before as well. But now I can create a editor document
>>>>>>> without the need for a project, which is pretty neat. But I noticed that
>>>>>>> the editor application still needs a total of 85 plugins to run. Is this
>>>>>>> normal or did I something wrong. Do you have links to useful documents
>>>>>>> that show how to integrate a GMF editor into a RCP application ?
>>>>>>>
>>>>>>> Thanks for your help,
>>>>>>> Christian
>>>>>>>
>>>>>>> Alex Shatalin schrieb:
>>>>>>>> Hello Christian,
>>>>>>>>
>>>>>>>> Yes, you need latest stable build - RCP support was not fully included
>>>>>>>> into M3.
>>>>>>>>
>>>>>>>> -----------------
>>>>>>>> Alex Shatalin
>>>>>>>>
>>>>>>>>
|
|
|
Goto Forum:
Current Time: Tue Jul 15 06:16:21 EDT 2025
Powered by FUDForum. Page generated in 0.07632 seconds
|