Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » Epsilon » Model Elemenet Types: "!" vs. "::"
icon5.gif  Model Elemenet Types: "!" vs. "::" [message #494818] Mon, 02 November 2009 18:35 Go to next message
Horacio Hoyos is currently offline Horacio HoyosFriend
Messages: 240
Registered: October 2009
Location: Mexico
Senior Member

I am totally confused on the real diffrence between the two model element types character separator.

I was doing a simple model to model transformation. I have 2 ecore metamodles, and an epsilon model. I made a simple etl rule to test the transformation and, following the Tree2Graph example, used the ! character to separate elements. I kept getting a "Typed not found error" so I decided to try with the :: separator. So now the elements of the input metamodel where recognized but the ones form the output one not. So I changed the one for the output to ! and it all worked out.

So... when or how to know when to use one or the other? Does it has to do with some property of the metamodel ?

Thanks,

Horacio Hoyos


Horacio Hoyos Rodriguez
Kinori Tech
Need professional support for Epsilon, EMF?
Go to: https://kinori.tech
Re: Model Elemenet Types: "!" vs. "::" [message #494860 is a reply to message #494818] Mon, 02 November 2009 23:14 Go to previous messageGo to next message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Horacio,

Apologies for the delayed response.

In Epsilon A!X.all returns all the instances of EClass X in model A. If
you omit ! and just write X.all it will return all the instances of X in
the first model of the launch configuration (useful when you have only
one model, e.g. in model validation). By contrast, :: is a package
separator that helps you to fully qualify names. For example if your
Ecore metamodel reads like this:

package foo {

package bar {

class X{}

}

class X{}

}

A!foo::bar::X.allInstances will return all the instances of the first X
EClass in model A while A!foo::X.allInstances will return all instances
of the second X EClass in model A.

If your metamodel reads like this (no ambiguity)

package foo {

package bar {

class X{}

}

}

A!X.allInstances will still return all the instances of X (there is no
need to specify the full foo::bar::X path).

I hope this helps. If not please let me know and I'll be happy to
provide further clarifications.

Cheers,
Dimitris

Horacio wrote:
> I am totally confused on the real diffrence between the two model
> element types character separator.
>
> I was doing a simple model to model transformation. I have 2 ecore
> metamodles, and an epsilon model. I made a simple etl rule to test the
> transformation and, following the Tree2Graph example, used the !
> character to separate elements. I kept getting a "Typed not found error"
> so I decided to try with the :: separator. So now the elements of the
> input metamodel where recognized but the ones form the output one not.
> So I changed the one for the output to ! and it all worked out.
>
> So... when or how to know when to use one or the other? Does it has to
> do with some property of the metamodel ?
>
> Thanks,
>
> Horacio Hoyos
Re: Model Elemenet Types: "!" vs. "::" [message #494865 is a reply to message #494860] Tue, 03 November 2009 00:20 Go to previous messageGo to next message
Horacio Hoyos is currently offline Horacio HoyosFriend
Messages: 240
Registered: October 2009
Location: Mexico
Senior Member

Thanks for your reply Dimitris. and don't worry about the delay Very Happy.

Ok, I understand the diference between the two.. or at least I think I do. In my test transformation I created a rule to transform one element to another:
rule Pizzas2Menu
	transform p : Pizza::NamedPizza
	to i : Menu!Item {
		i.name = p.name;
	}


My input metamodel is PIzza, and my output one is Menu. For the transformation to work I had to, as you can see, identify the input model element with :: and the output one with !. In the tree2graph example ! is used for both input and output ones. And out of curiosity I used the "Epsilon->Generate ETL" menu over an ecore model and the transformation uses ! and the element name inside double qutoes.

What I am trying to figure out is when to use one or the other, not from a "meaning" point of view (as you explained in your answer), but for my workflow to run without erroros, that with such a simple test seems to come from somewhere else than the actual "meaning" of each separator.

Regards,


Horacio Hoyos


Horacio Hoyos Rodriguez
Kinori Tech
Need professional support for Epsilon, EMF?
Go to: https://kinori.tech
Re: Model Elemenet Types: "!" vs. "::" [message #494866 is a reply to message #494865] Tue, 03 November 2009 00:55 Go to previous messageGo to next message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Horacio,

In Epsilon, models are referred to by their names. For example, you can
have two (in general an arbitrary number of) models A and B that conform
to the same metamodel (e.g. the UML 2.x metamodel). In this case,
A!Class.all will return all UML classes in model A and similarly
B!Model.all will return all UML classes in model B.

Therefore, your rule should look like

rule Pizzas2Menu
transform p : Source!NamedPizza
to i : Target!Item {
...
}

where Source and Target (or whatever else you choose them to be in the
"name" field of the model configuration dialogs or in the "name"
attribute of your <epsilon.loadModel ...> ANT tasks) are the names of
your source and target models (not metamodels).

What the rule in its existing form does is that it transforms all
NamedPizzas from the first model of your launch configuration
(regardless of its name) to an Item in your Menu model.

Up to 0.8.7, "" were used to allow you to use reserved words or strings
containing non alphanumeric characters as property/type names (e.g
"transform".allInstances or myObject."my strange property name"). The
Generate ETL utility generates all identifiers within "" to cater for
potential reserved words in your EClasses/EAttributes. From 0.8.8, ``
are used for this reason and "" are used for enclosing literal strings
(to give it a more Java-like flavour).

Cheers,
Dimitris

Horacio wrote:
> Thanks for your reply Dimitris. and don't worry about the delay :d.
>
> Ok, I understand the diference between the two.. or at least I think I
> do. In my test transformation I created a rule to transform one element
> to another:
>
> rule Pizzas2Menu
> transform p : Pizza::NamedPizza
> to i : Menu!Item {
> i.name = p.name;
> }
>
> My input metamodel is PIzza, and my output one is Menu. For the
> transformation to work I had to, as you can see, identify the input
> model element with :: and the output one with !. In the tree2graph
> example ! is used for both input and output ones. And out of curiosity I
> used the "Epsilon->Generate ETL" menu over an ecore model and the
> transformation uses ! and the element name inside double qutoes.
> What I am trying to figure out is when to use one or the other, not from
> a "meaning" point of view (as you explained in your answer), but for my
> workflow to run without erroros, that with such a simple test seems to
> come from somewhere else than the actual "meaning" of each separator.
>
> Regards,
>
>
> Horacio Hoyos
Re: Model Elemenet Types: "!" vs. "::" [message #497992 is a reply to message #494866] Fri, 13 November 2009 15:49 Go to previous messageGo to next message
Horacio Hoyos is currently offline Horacio HoyosFriend
Messages: 240
Registered: October 2009
Location: Mexico
Senior Member

Hello, and sorry fort the late response.

I still can't get it to work.... maybe i'm a doing something wrong elsewhere. This are some snippets of my code (No more pizza Smile ):

Transformation.xml:
<epsilon.emf.register file="../HiLeSPL.generator/metamodels/hiles/StructuralHiles.ecore"/>
<epsilon.emf.register file="../HiLeSPL.generator/metamodels/vhdl/ams/VHDL-AMS.ecore"/>
...
<epsilon.loadModel name="Petri" type="EMF_M2">
			<parameter name="modelFile" file="../HiLeS(Epsilon)/models/hiles/Petri.xmi"/>
...
</epsilon.loadModel>
...
<epsilon.loadModel name="PetriVHDL" type="EMF_M2">
			<parameter name="modelFile" file="../models/vhdl/PetriVHDL.xmi"/>
...
</epsilon.loadModel>


So now on my ETL, usign the model names:
rule System2DesignUnit
	transform hs : Petri!HilesSystem
	to ds : PetriVHDL!DesignUnit {
		ds.identifier = hs.name;
	}


This is part of the Petri model:
<?xml version="1.0" encoding="ASCII"?>
<hl:HilesSystem xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:hl="/HiLeSPL.generator/metamodels/hiles/StructuralHiles.ecore" xmi:id="_wUOYkLmSEd6krrbVnIHY-w" name="Petri">
  <initialArchitecture xmi:id="_fq8nQLmUEd6krrbVnIHY-w" name="main">
    ...
  </initialArchitecture>
</hl:HilesSystem>


So as far as I can see it should work, but I keep getting a "Type Petri!HilesSystem not found" error.




Horacio Hoyos Rodriguez
Kinori Tech
Need professional support for Epsilon, EMF?
Go to: https://kinori.tech
Re: Model Elemenet Types: "!" vs. "::" [message #498038 is a reply to message #497992] Fri, 13 November 2009 18:34 Go to previous messageGo to next message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Horacio,

Both

<epsilon.loadModel ... type="EMF_M2">

should be

<epsilon.loadModel ... type="EMF">

If this doesn't solve it, could you please send me your metamodels and a
sample input model so that I can have a closer look?

Cheers,
Dimitris

Horacio wrote:
> Hello, and sorry fort the late response.
>
> I still can't get it to work.... maybe i'm a doing something wrong
> elsewhere. This are some snippets of my code (No more pizza :) ):
>
> Transformation.xml:
>
> <epsilon.emf.register
> file="../HiLeSPL.generator/metamodels/hiles/StructuralHiles.ecore "/>
> <epsilon.emf.register
> file="../HiLeSPL.generator/metamodels/vhdl/ams/VHDL-AMS.ecore "/>
> ..
> <epsilon.loadModel name="Petri" type="EMF_M2">
> <parameter name="modelFile"
> file="../HiLeS(Epsilon)/models/hiles/Petri.xmi"/>
> ..
> </epsilon.loadModel>
> ..
> <epsilon.loadModel name="PetriVHDL" type="EMF_M2">
> <parameter name="modelFile"
> file="../models/vhdl/PetriVHDL.xmi"/>
> ..
> </epsilon.loadModel>
>
> So now on my ETL, usign the model names:
>
> rule System2DesignUnit
> transform hs : Petri!HilesSystem
> to ds : PetriVHDL!DesignUnit {
> ds.identifier = hs.name;
> }
>
>
> This is part of the Petri model:
>
> <?xml version="1.0" encoding="ASCII"?>
> <hl:HilesSystem xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI"
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> xmlns:hl="/HiLeSPL.generator/metamodels/hiles/StructuralHiles.ecore "
> xmi:id="_wUOYkLmSEd6krrbVnIHY-w" name="Petri">
> <initialArchitecture xmi:id="_fq8nQLmUEd6krrbVnIHY-w" name="main">
> ...
> </initialArchitecture>
> </hl:HilesSystem>
>
>
> So as far as I can see it should work, but I keep getting a "Type
> Petri!HilesSystem not found" error.
>
>
>
Re: Model Elemenet Types: "!" vs. "::" [message #498598 is a reply to message #498038] Tue, 17 November 2009 16:05 Go to previous messageGo to next message
Horacio Hoyos is currently offline Horacio HoyosFriend
Messages: 240
Registered: October 2009
Location: Mexico
Senior Member

Hi Dimitris,

My models have a .xmi extension and reading other posts I thought EMF_M2 was the correct type. Any how I changed it as you suggested and now I get a new error, from the ant processing:

java.lang String index out of range: 0

How can I send you the files as requested?

Regards,

Horacio Hoyos


Horacio Hoyos Rodriguez
Kinori Tech
Need professional support for Epsilon, EMF?
Go to: https://kinori.tech

[Updated on: Tue, 17 November 2009 16:07]

Report message to a moderator

Re: Model Elemenet Types: "!" vs. "::" [message #498603 is a reply to message #498598] Tue, 17 November 2009 16:09 Go to previous messageGo to next message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Horacio,

The files didn't make it. Could you please send them to me at dskolovos
gmail com ?

Cheers,
Dimitris

Horacio wrote:
> Hi Dimitris,
>
> My models have a .xmi extension and reading other posts I thought EMF_M2
> was the correct type. Any how I changed it as you suggested and now I
> get a new error, from the ant processing:
>
> java.lang String index out of range: 0
>
> I am sending you the files as requested.
>
> Regards,
>
> Horacio Hoyos


--
Spread the word: http://www.eclipse.org/gmt/epsilon/spreadtheword
Follow Epsilon on Twitter: http://twitter.com/epsilonews
Re: Model Elemenet Types: "!" vs. "::" [message #499010 is a reply to message #498603] Thu, 19 November 2009 14:37 Go to previous messageGo to next message
Horacio Hoyos is currently offline Horacio HoyosFriend
Messages: 240
Registered: October 2009
Location: Mexico
Senior Member

Dimitris,

Thanks for your help! I have a final question. On your mail you told me:

Quote:

2. I changed both

<parameter name="isMetamodelFileBased" value="true"/>

to

<parameter name="isMetamodelFileBased" value="false"/>



Why and when to set that property to true, and where can I get detailed information on the attributes of the Epsilon workflow tasks?

Thanks,

Horacio


Horacio Hoyos Rodriguez
Kinori Tech
Need professional support for Epsilon, EMF?
Go to: https://kinori.tech

[Updated on: Thu, 19 November 2009 14:50]

Report message to a moderator

Re: Model Elemenet Types: "!" vs. "::" [message #500099 is a reply to message #499010] Tue, 24 November 2009 23:25 Go to previous message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Horacio,

The ANT tasks are documented in chapter 11 of the Epsilon book but the
chapter doesn't seem to be covering parameters for loading EMF models.
I'll update the book and/or add a new article on this under
http://www.eclipse.org/gmt/epsilon/doc/articles/ within the next few
days. Thanks for pointing this out!

Cheers,
Dimitris

Horacio wrote:
> Dimitris,
>
> Thanks for your help! I have a final question:
>
> [QUOTE]
> 2. I changed both
>
> <parameter name="isMetamodelFileBased" value="true"/>
>
> to
>
> <parameter name="isMetamodelFileBased" value="false"/>
> [/QUOTE
>
> Why and when to set that property to true, and where can I get detailed
> information on the attributes of the Epsilon workflow tasks?
>
> Thanks,
>
> Horacio
>


--
Spread the word: http://www.eclipse.org/gmt/epsilon/spreadtheword
Follow Epsilon on Twitter: http://twitter.com/epsilonews
Re: Model Elemenet Types: "!" vs. "::" [message #582476 is a reply to message #494860] Tue, 03 November 2009 00:20 Go to previous message
Horacio Hoyos is currently offline Horacio HoyosFriend
Messages: 240
Registered: October 2009
Location: Mexico
Senior Member

Thanks for your reply Dimitris. and don't worry about the delay :d.

Ok, I understand the diference between the two.. or at least I think I do. In my test transformation I created a rule to transform one element to another:

rule Pizzas2Menu
transform p : Pizza::NamedPizza
to i : Menu!Item {
i.name = p.name;
}

My input metamodel is PIzza, and my output one is Menu. For the transformation to work I had to, as you can see, identify the input model element with :: and the output one with !. In the tree2graph example ! is used for both input and output ones. And out of curiosity I used the "Epsilon->Generate ETL" menu over an ecore model and the transformation uses ! and the element name inside double qutoes.

What I am trying to figure out is when to use one or the other, not from a "meaning" point of view (as you explained in your answer), but for my workflow to run without erroros, that with such a simple test seems to come from somewhere else than the actual "meaning" of each separator.

Regards,


Horacio Hoyos


Horacio Hoyos Rodriguez
Kinori Tech
Need professional support for Epsilon, EMF?
Go to: https://kinori.tech
Re: Model Elemenet Types: "!" vs. "::" [message #582492 is a reply to message #494865] Tue, 03 November 2009 00:55 Go to previous message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Horacio,

In Epsilon, models are referred to by their names. For example, you can
have two (in general an arbitrary number of) models A and B that conform
to the same metamodel (e.g. the UML 2.x metamodel). In this case,
A!Class.all will return all UML classes in model A and similarly
B!Model.all will return all UML classes in model B.

Therefore, your rule should look like

rule Pizzas2Menu
transform p : Source!NamedPizza
to i : Target!Item {
...
}

where Source and Target (or whatever else you choose them to be in the
"name" field of the model configuration dialogs or in the "name"
attribute of your <epsilon.loadModel ...> ANT tasks) are the names of
your source and target models (not metamodels).

What the rule in its existing form does is that it transforms all
NamedPizzas from the first model of your launch configuration
(regardless of its name) to an Item in your Menu model.

Up to 0.8.7, "" were used to allow you to use reserved words or strings
containing non alphanumeric characters as property/type names (e.g
"transform".allInstances or myObject."my strange property name"). The
Generate ETL utility generates all identifiers within "" to cater for
potential reserved words in your EClasses/EAttributes. From 0.8.8, ``
are used for this reason and "" are used for enclosing literal strings
(to give it a more Java-like flavour).

Cheers,
Dimitris

Horacio wrote:
> Thanks for your reply Dimitris. and don't worry about the delay :d.
>
> Ok, I understand the diference between the two.. or at least I think I
> do. In my test transformation I created a rule to transform one element
> to another:
>
> rule Pizzas2Menu
> transform p : Pizza::NamedPizza
> to i : Menu!Item {
> i.name = p.name;
> }
>
> My input metamodel is PIzza, and my output one is Menu. For the
> transformation to work I had to, as you can see, identify the input
> model element with :: and the output one with !. In the tree2graph
> example ! is used for both input and output ones. And out of curiosity I
> used the "Epsilon->Generate ETL" menu over an ecore model and the
> transformation uses ! and the element name inside double qutoes.
> What I am trying to figure out is when to use one or the other, not from
> a "meaning" point of view (as you explained in your answer), but for my
> workflow to run without erroros, that with such a simple test seems to
> come from somewhere else than the actual "meaning" of each separator.
>
> Regards,
>
>
> Horacio Hoyos
Re: Model Elemenet Types: "!" vs. "::" [message #582840 is a reply to message #494866] Fri, 13 November 2009 15:49 Go to previous message
Horacio Hoyos is currently offline Horacio HoyosFriend
Messages: 240
Registered: October 2009
Location: Mexico
Senior Member

Hello, and sorry fort the late response.

I still can't get it to work.... maybe i'm a doing something wrong elsewhere. This are some snippets of my code (No more pizza :) ):

Transformation.xml:

<epsilon.emf.register file="../HiLeSPL.generator/metamodels/hiles/StructuralHiles.ecore "/>
<epsilon.emf.register file="../HiLeSPL.generator/metamodels/vhdl/ams/VHDL-AMS.ecore "/>
...
<epsilon.loadModel name="Petri" type="EMF_M2">
<parameter name="modelFile" file="../HiLeS(Epsilon)/models/hiles/Petri.xmi"/>
...
</epsilon.loadModel>
...
<epsilon.loadModel name="PetriVHDL" type="EMF_M2">
<parameter name="modelFile" file="../models/vhdl/PetriVHDL.xmi"/>
...
</epsilon.loadModel>

So now on my ETL, usign the model names:

rule System2DesignUnit
transform hs : Petri!HilesSystem
to ds : PetriVHDL!DesignUnit {
ds.identifier = hs.name;
}


This is part of the Petri model:

<?xml version="1.0" encoding="ASCII"?>
<hl:HilesSystem xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:hl="/HiLeSPL.generator/metamodels/hiles/StructuralHiles.ecore " xmi:id="_wUOYkLmSEd6krrbVnIHY-w" name="Petri">
<initialArchitecture xmi:id="_fq8nQLmUEd6krrbVnIHY-w" name="main">
...
</initialArchitecture>
</hl:HilesSystem>


So as far as I can see it should work, but I keep getting a "Type Petri!HilesSystem not found" error.


Horacio Hoyos Rodriguez
Kinori Tech
Need professional support for Epsilon, EMF?
Go to: https://kinori.tech
Re: Model Elemenet Types: "!" vs. "::" [message #582850 is a reply to message #582840] Fri, 13 November 2009 18:34 Go to previous message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Horacio,

Both

<epsilon.loadModel ... type="EMF_M2">

should be

<epsilon.loadModel ... type="EMF">

If this doesn't solve it, could you please send me your metamodels and a
sample input model so that I can have a closer look?

Cheers,
Dimitris

Horacio wrote:
> Hello, and sorry fort the late response.
>
> I still can't get it to work.... maybe i'm a doing something wrong
> elsewhere. This are some snippets of my code (No more pizza :) ):
>
> Transformation.xml:
>
> <epsilon.emf.register
> file="../HiLeSPL.generator/metamodels/hiles/StructuralHiles.ecore "/>
> <epsilon.emf.register
> file="../HiLeSPL.generator/metamodels/vhdl/ams/VHDL-AMS.ecore "/>
> ..
> <epsilon.loadModel name="Petri" type="EMF_M2">
> <parameter name="modelFile"
> file="../HiLeS(Epsilon)/models/hiles/Petri.xmi"/>
> ..
> </epsilon.loadModel>
> ..
> <epsilon.loadModel name="PetriVHDL" type="EMF_M2">
> <parameter name="modelFile"
> file="../models/vhdl/PetriVHDL.xmi"/>
> ..
> </epsilon.loadModel>
>
> So now on my ETL, usign the model names:
>
> rule System2DesignUnit
> transform hs : Petri!HilesSystem
> to ds : PetriVHDL!DesignUnit {
> ds.identifier = hs.name;
> }
>
>
> This is part of the Petri model:
>
> <?xml version="1.0" encoding="ASCII"?>
> <hl:HilesSystem xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI"
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> xmlns:hl="/HiLeSPL.generator/metamodels/hiles/StructuralHiles.ecore "
> xmi:id="_wUOYkLmSEd6krrbVnIHY-w" name="Petri">
> <initialArchitecture xmi:id="_fq8nQLmUEd6krrbVnIHY-w" name="main">
> ...
> </initialArchitecture>
> </hl:HilesSystem>
>
>
> So as far as I can see it should work, but I keep getting a "Type
> Petri!HilesSystem not found" error.
>
>
>
Re: Model Elemenet Types: "!" vs. "::" [message #582898 is a reply to message #498038] Tue, 17 November 2009 16:05 Go to previous message
Horacio Hoyos is currently offline Horacio HoyosFriend
Messages: 240
Registered: October 2009
Location: Mexico
Senior Member

Hi Dimitris,

My models have a .xmi extension and reading other posts I thought EMF_M2 was the correct type. Any how I changed it as you suggested and now I get a new error, from the ant processing:

java.lang String index out of range: 0

I am sending you the files as requested.

Regards,

Horacio Hoyos


Horacio Hoyos Rodriguez
Kinori Tech
Need professional support for Epsilon, EMF?
Go to: https://kinori.tech
Re: Model Elemenet Types: "!" vs. "::" [message #582909 is a reply to message #582898] Tue, 17 November 2009 16:09 Go to previous message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Horacio,

The files didn't make it. Could you please send them to me at dskolovos
gmail com ?

Cheers,
Dimitris

Horacio wrote:
> Hi Dimitris,
>
> My models have a .xmi extension and reading other posts I thought EMF_M2
> was the correct type. Any how I changed it as you suggested and now I
> get a new error, from the ant processing:
>
> java.lang String index out of range: 0
>
> I am sending you the files as requested.
>
> Regards,
>
> Horacio Hoyos


--
Spread the word: http://www.eclipse.org/gmt/epsilon/spreadtheword
Follow Epsilon on Twitter: http://twitter.com/epsilonews
Re: Model Elemenet Types: "!" vs. "::" [message #583051 is a reply to message #498603] Thu, 19 November 2009 14:37 Go to previous message
Horacio Hoyos is currently offline Horacio HoyosFriend
Messages: 240
Registered: October 2009
Location: Mexico
Senior Member

Dimitris,

Thanks for your help! I have a final question:

[QUOTE]
2. I changed both

<parameter name="isMetamodelFileBased" value="true"/>

to

<parameter name="isMetamodelFileBased" value="false"/>
[/QUOTE

Why and when to set that property to true, and where can I get detailed information on the attributes of the Epsilon workflow tasks?

Thanks,

Horacio


Horacio Hoyos Rodriguez
Kinori Tech
Need professional support for Epsilon, EMF?
Go to: https://kinori.tech
Re: Model Elemenet Types: "!" vs. "::" [message #583218 is a reply to message #583051] Tue, 24 November 2009 23:25 Go to previous message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Horacio,

The ANT tasks are documented in chapter 11 of the Epsilon book but the
chapter doesn't seem to be covering parameters for loading EMF models.
I'll update the book and/or add a new article on this under
http://www.eclipse.org/gmt/epsilon/doc/articles/ within the next few
days. Thanks for pointing this out!

Cheers,
Dimitris

Horacio wrote:
> Dimitris,
>
> Thanks for your help! I have a final question:
>
> [QUOTE]
> 2. I changed both
>
> <parameter name="isMetamodelFileBased" value="true"/>
>
> to
>
> <parameter name="isMetamodelFileBased" value="false"/>
> [/QUOTE
>
> Why and when to set that property to true, and where can I get detailed
> information on the attributes of the Epsilon workflow tasks?
>
> Thanks,
>
> Horacio
>


--
Spread the word: http://www.eclipse.org/gmt/epsilon/spreadtheword
Follow Epsilon on Twitter: http://twitter.com/epsilonews
Previous Topic:Re: Question about using enumerated types!
Next Topic:Question about using enumerated types!
Goto Forum:
  


Current Time: Fri Mar 29 01:19:23 GMT 2024

Powered by FUDForum. Page generated in 0.04193 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top