Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » OCL » Differences evaluating an OCL expression using Interactive OCL Console and xText Interactive Console
Differences evaluating an OCL expression using Interactive OCL Console and xText Interactive Console [message #1469464] Tue, 11 November 2014 16:26 Go to next message
Toñi  Reina is currently offline Toñi ReinaFriend
Messages: 209
Registered: July 2009
Senior Member
Hello,

I'm using OCLinEcore to add some invariants to a metamodel. This
metamodel and constraint had been checked previously in Eclipse Indigo.

Currently I'm using Eclipse Luna. It was strange that when I
validated my models that were correct in Eclipse Indigo, I have found
some errors.

I have been doing some investigation and I have found out that the
same OCL expression:

parents->exists(gender=Gender::MALE)

returns true when is evaluated in the Interactive OCL Console, but
returns false when is evaluated in the xText OCL Console.

I suppose that the xText OCL Console has some bug, because, the
expression should return true. I suppose this bug is also included when
I write the invariant in my metamodel with OCLInEcore.

Am I right? Is it a bug?


Thanks,
Toñi Reina
Re: Differences evaluating an OCL expression using Interactive OCL Console and xText Interactive Con [message #1469469 is a reply to message #1469464] Tue, 11 November 2014 16:33 Go to previous messageGo to next message
Ed Willink is currently offline Ed WillinkFriend
Messages: 7655
Registered: July 2009
Senior Member
Hi

Which Luna?

I recently fixed a bug for UML EnumerationLiterals, which should not
affect Ecore. There are quite a few JUnit tests so I'd be surprised if
something so simple fails.

Can you provide a repro?

Luna has an OCL debugger so you can single step from the Xtext OCL Console.

Regards

Ed Willink


On 11/11/2014 16:26, Toñi Reina Quintero wrote:
> Hello,
>
> I'm using OCLinEcore to add some invariants to a metamodel. This
> metamodel and constraint had been checked previously in Eclipse Indigo.
>
> Currently I'm using Eclipse Luna. It was strange that when I
> validated my models that were correct in Eclipse Indigo, I have found
> some errors.
>
> I have been doing some investigation and I have found out that the
> same OCL expression:
>
> parents->exists(gender=Gender::MALE)
>
> returns true when is evaluated in the Interactive OCL Console, but
> returns false when is evaluated in the xText OCL Console.
>
> I suppose that the xText OCL Console has some bug, because, the
> expression should return true. I suppose this bug is also included when
> I write the invariant in my metamodel with OCLInEcore.
>
> Am I right? Is it a bug?
>
>
> Thanks,
> Toñi Reina
Re: Differences evaluating an OCL expression using Interactive OCL Console and xText Interactive Con [message #1469518 is a reply to message #1469469] Tue, 11 November 2014 17:25 Go to previous messageGo to next message
Ed Willink is currently offline Ed WillinkFriend
Messages: 7655
Registered: July 2009
Senior Member
Hi

Using /org.eclipse.ocl.examples.xtext.tests/model/Fruit.ecore as a repo
and a model containing a Tree with a black and a red Apple.

self.fruits->exists(color = Color::black)

works exactly as I would expect.

I suspect that you have some ambiguous names.

Regards

Ed Willink


On 11/11/2014 16:33, Ed Willink wrote:
> Hi
>
> Which Luna?
>
> I recently fixed a bug for UML EnumerationLiterals, which should not
> affect Ecore. There are quite a few JUnit tests so I'd be surprised if
> something so simple fails.
>
> Can you provide a repro?
>
> Luna has an OCL debugger so you can single step from the Xtext OCL Console.
>
> Regards
>
> Ed Willink
>
>
> On 11/11/2014 16:26, Toñi Reina Quintero wrote:
>> Hello,
>>
>> I'm using OCLinEcore to add some invariants to a metamodel. This
>> metamodel and constraint had been checked previously in Eclipse Indigo.
>>
>> Currently I'm using Eclipse Luna. It was strange that when I
>> validated my models that were correct in Eclipse Indigo, I have found
>> some errors.
>>
>> I have been doing some investigation and I have found out that the
>> same OCL expression:
>>
>> parents->exists(gender=Gender::MALE)
>>
>> returns true when is evaluated in the Interactive OCL Console, but
>> returns false when is evaluated in the xText OCL Console.
>>
>> I suppose that the xText OCL Console has some bug, because, the
>> expression should return true. I suppose this bug is also included when
>> I write the invariant in my metamodel with OCLInEcore.
>>
>> Am I right? Is it a bug?
>>
>>
>> Thanks,
>> Toñi Reina
>
Re: Differences evaluating an OCL expression using Interactive OCL Console and xText Interactive Con [message #1474798 is a reply to message #1469518] Sat, 15 November 2014 19:05 Go to previous messageGo to next message
Toñi  Reina is currently offline Toñi ReinaFriend
Messages: 209
Registered: July 2009
Senior Member
Hi Ed,

I have attached the metamodel and a model example with the problems I
described in the previous post.

Having as context Robb, in the GameOfThrones model, I executed the OCL
expression parents->exists(gender=Gender::MALE) in both Consoles, the
interactive one and the xText Interactive. In the OCL interactive, the
expression is evaluated to true, which is the right result. However,
when I execute the expresion in the OCL Interactive Console, the result
is false.

I have included also three invariants in the class Person. It seems the
OCL validation is not right. I have attached a png file with the results
of the validation.

The Eclipse Version I'm using is:

Eclipse Modeling Tools
Version: Luna Release (4.4.0)
Build id: 20140612-0600

Thanks and regards,
Toñi Reina



El 11/11/2014 18:25, Ed Willink escribió:
> Hi
>
> Using /org.eclipse.ocl.examples.xtext.tests/model/Fruit.ecore as a repo
> and a model containing a Tree with a black and a red Apple.
>
> self.fruits->exists(color = Color::black)
>
> works exactly as I would expect.
>
> I suspect that you have some ambiguous names.
>
> Regards
>
> Ed Willink
>
>
> On 11/11/2014 16:33, Ed Willink wrote:
>> Hi
>>
>> Which Luna?
>>
>> I recently fixed a bug for UML EnumerationLiterals, which should not
>> affect Ecore. There are quite a few JUnit tests so I'd be surprised if
>> something so simple fails.
>>
>> Can you provide a repro?
>>
>> Luna has an OCL debugger so you can single step from the Xtext OCL
>> Console.
>>
>> Regards
>>
>> Ed Willink
>>
>>
>> On 11/11/2014 16:26, Toñi Reina Quintero wrote:
>>> Hello,
>>>
>>> I'm using OCLinEcore to add some invariants to a metamodel. This
>>> metamodel and constraint had been checked previously in Eclipse Indigo.
>>>
>>> Currently I'm using Eclipse Luna. It was strange that when I
>>> validated my models that were correct in Eclipse Indigo, I have found
>>> some errors.
>>>
>>> I have been doing some investigation and I have found out that the
>>> same OCL expression:
>>>
>>> parents->exists(gender=Gender::MALE)
>>>
>>> returns true when is evaluated in the Interactive OCL Console, but
>>> returns false when is evaluated in the xText OCL Console.
>>>
>>> I suppose that the xText OCL Console has some bug, because, the
>>> expression should return true. I suppose this bug is also included when
>>> I write the invariant in my metamodel with OCLInEcore.
>>>
>>> Am I right? Is it a bug?
>>>
>>>
>>> Thanks,
>>> Toñi Reina
>>
>
  • Attachment: sma.family.ocl.zip
    (Size: 2.91KB, Downloaded 226 times)
  • Attachment: ocl.png
    (Size: 31.62KB, Downloaded 379 times)
Re: Differences evaluating an OCL expression using Interactive OCL Console and xText Interactive Con [message #1475566 is a reply to message #1474798] Sun, 16 November 2014 10:40 Go to previous messageGo to next message
Ed Willink is currently offline Ed WillinkFriend
Messages: 7655
Registered: July 2009
Senior Member
Hi

A good repo, although you haven't specified what version of OCL you are
using.

It works fine for me with 5.1.0M3 on 4.5.0M3, 5.0.1, 5.0.0 on 4.4.0.

If it doesn't work for you with one of these, please post your
Help->Installation Details->Configuration.

Regards

Ed Willink


On 15/11/2014 19:05, Toñi Reina Quintero wrote:
> Hi Ed,
>
> I have attached the metamodel and a model example with the problems I
> described in the previous post.
>
> Having as context Robb, in the GameOfThrones model, I executed the OCL
> expression parents->exists(gender=Gender::MALE) in both Consoles, the
> interactive one and the xText Interactive. In the OCL interactive, the
> expression is evaluated to true, which is the right result. However,
> when I execute the expresion in the OCL Interactive Console, the result
> is false.
>
> I have included also three invariants in the class Person. It seems the
> OCL validation is not right. I have attached a png file with the results
> of the validation.
>
> The Eclipse Version I'm using is:
>
> Eclipse Modeling Tools
> Version: Luna Release (4.4.0)
> Build id: 20140612-0600
>
> Thanks and regards,
> Toñi Reina
>
>
>
> El 11/11/2014 18:25, Ed Willink escribió:
>> Hi
>>
>> Using /org.eclipse.ocl.examples.xtext.tests/model/Fruit.ecore as a repo
>> and a model containing a Tree with a black and a red Apple.
>>
>> self.fruits->exists(color = Color::black)
>>
>> works exactly as I would expect.
>>
>> I suspect that you have some ambiguous names.
>>
>> Regards
>>
>> Ed Willink
>>
>>
>> On 11/11/2014 16:33, Ed Willink wrote:
>>> Hi
>>>
>>> Which Luna?
>>>
>>> I recently fixed a bug for UML EnumerationLiterals, which should not
>>> affect Ecore. There are quite a few JUnit tests so I'd be surprised if
>>> something so simple fails.
>>>
>>> Can you provide a repro?
>>>
>>> Luna has an OCL debugger so you can single step from the Xtext OCL
>>> Console.
>>>
>>> Regards
>>>
>>> Ed Willink
>>>
>>>
>>> On 11/11/2014 16:26, Toñi Reina Quintero wrote:
>>>> Hello,
>>>>
>>>> I'm using OCLinEcore to add some invariants to a metamodel. This
>>>> metamodel and constraint had been checked previously in Eclipse Indigo.
>>>>
>>>> Currently I'm using Eclipse Luna. It was strange that when I
>>>> validated my models that were correct in Eclipse Indigo, I have found
>>>> some errors.
>>>>
>>>> I have been doing some investigation and I have found out that the
>>>> same OCL expression:
>>>>
>>>> parents->exists(gender=Gender::MALE)
>>>>
>>>> returns true when is evaluated in the Interactive OCL Console, but
>>>> returns false when is evaluated in the xText OCL Console.
>>>>
>>>> I suppose that the xText OCL Console has some bug, because, the
>>>> expression should return true. I suppose this bug is also included when
>>>> I write the invariant in my metamodel with OCLInEcore.
>>>>
>>>> Am I right? Is it a bug?
>>>>
>>>>
>>>> Thanks,
>>>> Toñi Reina
>>>
>>
>
Re: Differences evaluating an OCL expression using Interactive OCL Console and xText Interactive Con [message #1475688 is a reply to message #1475566] Sun, 16 November 2014 13:05 Go to previous messageGo to next message
Toñi  Reina is currently offline Toñi ReinaFriend
Messages: 209
Registered: July 2009
Senior Member
Hi,

I have attached an image of the versions I'm using. And these are the
configuration details are in the .txt file I have included.

If you needed it, I can share my Eclipse bundle.

Thanks and regards,
Toñi Reina


El 16/11/2014 11:40, Ed Willink escribió:
> Hi
>
> A good repo, although you haven't specified what version of OCL you are
> using.
>
> It works fine for me with 5.1.0M3 on 4.5.0M3, 5.0.1, 5.0.0 on 4.4.0.
>
> If it doesn't work for you with one of these, please post your
> Help->Installation Details->Configuration.
>
> Regards
>
> Ed Willink
>
>
> On 15/11/2014 19:05, Toñi Reina Quintero wrote:
>> Hi Ed,
>>
>> I have attached the metamodel and a model example with the problems I
>> described in the previous post.
>>
>> Having as context Robb, in the GameOfThrones model, I executed the OCL
>> expression parents->exists(gender=Gender::MALE) in both Consoles, the
>> interactive one and the xText Interactive. In the OCL interactive, the
>> expression is evaluated to true, which is the right result. However,
>> when I execute the expresion in the OCL Interactive Console, the result
>> is false.
>>
>> I have included also three invariants in the class Person. It seems the
>> OCL validation is not right. I have attached a png file with the results
>> of the validation.
>>
>> The Eclipse Version I'm using is:
>>
>> Eclipse Modeling Tools
>> Version: Luna Release (4.4.0)
>> Build id: 20140612-0600
>>
>> Thanks and regards,
>> Toñi Reina
>>
>>
>>
>> El 11/11/2014 18:25, Ed Willink escribió:
>>> Hi
>>>
>>> Using /org.eclipse.ocl.examples.xtext.tests/model/Fruit.ecore as a repo
>>> and a model containing a Tree with a black and a red Apple.
>>>
>>> self.fruits->exists(color = Color::black)
>>>
>>> works exactly as I would expect.
>>>
>>> I suspect that you have some ambiguous names.
>>>
>>> Regards
>>>
>>> Ed Willink
>>>
>>>
>>> On 11/11/2014 16:33, Ed Willink wrote:
>>>> Hi
>>>>
>>>> Which Luna?
>>>>
>>>> I recently fixed a bug for UML EnumerationLiterals, which should not
>>>> affect Ecore. There are quite a few JUnit tests so I'd be surprised if
>>>> something so simple fails.
>>>>
>>>> Can you provide a repro?
>>>>
>>>> Luna has an OCL debugger so you can single step from the Xtext OCL
>>>> Console.
>>>>
>>>> Regards
>>>>
>>>> Ed Willink
>>>>
>>>>
>>>> On 11/11/2014 16:26, Toñi Reina Quintero wrote:
>>>>> Hello,
>>>>>
>>>>> I'm using OCLinEcore to add some invariants to a metamodel. This
>>>>> metamodel and constraint had been checked previously in Eclipse
>>>>> Indigo.
>>>>>
>>>>> Currently I'm using Eclipse Luna. It was strange that when I
>>>>> validated my models that were correct in Eclipse Indigo, I have found
>>>>> some errors.
>>>>>
>>>>> I have been doing some investigation and I have found out that the
>>>>> same OCL expression:
>>>>>
>>>>> parents->exists(gender=Gender::MALE)
>>>>>
>>>>> returns true when is evaluated in the Interactive OCL Console, but
>>>>> returns false when is evaluated in the xText OCL Console.
>>>>>
>>>>> I suppose that the xText OCL Console has some bug, because, the
>>>>> expression should return true. I suppose this bug is also included
>>>>> when
>>>>> I write the invariant in my metamodel with OCLInEcore.
>>>>>
>>>>> Am I right? Is it a bug?
>>>>>
>>>>>
>>>>> Thanks,
>>>>> Toñi Reina
>>>>
>>>
>>
>


*** Date: domingo, 16 de noviembre de 2014, 14:00:50 (Hora estándar de Europa central)

*** Platform Details:

*** System properties:
applicationXMI=org.eclipse.ui.workbench/LegacyIDE.e4xmi
awt.toolkit=sun.awt.windows.WToolkit
eclipse.application=org.eclipse.ui.ide.workbench
eclipse.buildId=4.4.0.I20140606-1215
eclipse.commands=-os
win32
-ws
win32
-arch
x86
-showsplash
C:\Eclipses\eclipse-epsilon-1.2-win32 (SMA2014-15)\\plugins\org.eclipse.platform_4.4.0.v20140606-1215\splash.bmp
-launcher
C:\Eclipses\eclipse-epsilon-1.2-win32 (SMA2014-15)\eclipse.exe
-name
Eclipse
--launcher.library
C:\Eclipses\eclipse-epsilon-1.2-win32 (SMA2014-15)\\plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.200.v20140603-1326\eclipse_1603.dll
-startup
C:\Eclipses\eclipse-epsilon-1.2-win32 (SMA2014-15)\\plugins/org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar
--launcher.appendVmargs
-product
org.eclipse.epp.package.modeling.product
-vm
C:\Program Files (x86)\Java\jre1.8.0_20\bin\client\jvm.dll
eclipse.home.location=file:/C:/Eclipses/eclipse-epsilon-1.2-win32 (SMA2014-15)/
eclipse.launcher=C:\Eclipses\eclipse-epsilon-1.2-win32 (SMA2014-15)\eclipse.exe
eclipse.launcher.name=Eclipse
eclipse.p2.data.area=@config.dir/../p2/
eclipse.p2.profile=epp.package.modeling
eclipse.product=org.eclipse.epp.package.modeling.product
eclipse.startTime=1416048711968
eclipse.stateSaveDelayInterval=30000
eclipse.vm=C:\Program Files (x86)\Java\jre1.8.0_20\bin\client\jvm.dll
eclipse.vmargs=-Dosgi.requiredJavaVersion=1.6
-Xms40m
-Xmx512m
-XX:MaxPermSize=256m
-Djava.class.path=C:\Eclipses\eclipse-epsilon-1.2-win32 (SMA2014-15)\\plugins/org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar
equinox.use.ds=true
file.encoding=Cp1252
file.encoding.pkg=sun.io
file.separator=\
gosh.args=--nointeractive
java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
java.awt.printerjob=sun.awt.windows.WPrinterJob
java.class.path=C:\Eclipses\eclipse-epsilon-1.2-win32 (SMA2014-15)\\plugins/org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar
java.class.version=52.0
java.endorsed.dirs=C:\Program Files (x86)\Java\jre1.8.0_20\lib\endorsed
java.ext.dirs=C:\Program Files (x86)\Java\jre1.8.0_20\lib\ext;C:\Windows\Sun\Java\lib\ext
java.home=C:\Program Files (x86)\Java\jre1.8.0_20
java.io.tmpdir=C:\Users\reinaqu\AppData\Local\Temp\
java.library.path=C:\Eclipses\eclipse-epsilon-1.2-win32 (SMA2014-15);C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:/Program Files (x86)/Java/jre1.8.0_20/bin/client;C:/Program Files (x86)/Java/jre1.8.0_20/bin;C:/Program Files (x86)/Java/jre1.8.0_20/lib/i386;C:\ProgramData\Oracle\Java\javapath;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;c:\Program Files (x86)\ATI Stream\bin\x86_64;c:\Program Files (x86)\ATI Stream\bin\x86;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\WIDCOMM\Bluetooth Software\;C:\Program Files\WIDCOMM\Bluetooth Software\syswow64;c:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Sony\VAIO Startup Setting Tool;C:\Program Files (x86)\Windows Live\Shared;C:\MinGW\bin;C:\Program Files (x86)\Git\cmd;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;c:\Program Files (x86)\ATI Stream\bin\x86_64;c:\Program Files (x86)\ATI Stream\bin\x86;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\WIDCOMM\Bluetooth Software\;C:\Program Files\WIDCOMM\Bluetooth Software\syswow64;c:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files (x86)\Sony\VAIO Startup Setting Tool;C:\Program Files (x86)\Windows Live\Shared;C:\MinGW\bin;C:\Eclipses\eclipse-epsilon-1.2-win32 (SMA2014-15);;.
java.runtime.name=Java(TM) SE Runtime Environment
java.runtime.version=1.8.0_20-b26
java.specification.name=Java Platform API Specification
java.specification.vendor=Oracle Corporation
java.specification.version=1.8
java.vendor=Oracle Corporation
java.vendor.url=http://java.oracle.com/
java.vendor.url.bug=http://bugreport.sun.com/bugreport/
java.version=1.8.0_20
java.vm.info=mixed mode
java.vm.name=Java HotSpot(TM) Client VM
java.vm.specification.name=Java Virtual Machine Specification
java.vm.specification.vendor=Oracle Corporation
java.vm.specification.version=1.8
java.vm.vendor=Oracle Corporation
java.vm.version=25.20-b23
line.separator=

org.apache.commons.logging.Log=org.apache.commons.logging.impl.NoOpLog
org.eclipse.equinox.launcher.splash.location=C:\Eclipses\eclipse-epsilon-1.2-win32 (SMA2014-15)\\plugins\org.eclipse.platform_4.4.0.v20140606-1215\splash.bmp
org.eclipse.equinox.simpleconfigurator.configUrl=file:org.eclipse.equinox.simpleconfigurator/bundles.info
org.eclipse.update.reconcile=false
org.eclipse.update.resolution_url=
org.osgi.framework.executionenvironment=OSGi/Minimum-1.0,OSGi/Minimum-1.1,OSGi/Minimum-1.2,JavaSE/compact1-1.8,JavaSE/compact2-1.8,JavaSE/compact3-1.8,JRE-1.1,J2SE-1.2,J2SE-1.3,J2SE-1.4,J2SE-1.5,JavaSE-1.6,JavaSE-1.7,JavaSE-1.8
org.osgi.framework.language=es
org.osgi.framework.os.name=Windows7
org.osgi.framework.os.version=6.1.0
org.osgi.framework.processor=x86
org.osgi.framework.system.capabilities=osgi.ee; osgi.ee="OSGi/Minimum"; version:List<Version>="1.0, 1.1, 1.2",osgi.ee; osgi.ee="JRE"; version:List<Version>="1.0, 1.1",osgi.ee; osgi.ee="JavaSE"; version:List<Version>="1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8",osgi.ee; osgi.ee="JavaSE/compact1"; version:List<Version>="1.8",osgi.ee; osgi.ee="JavaSE/compact2"; version:List<Version>="1.8",osgi.ee; osgi.ee="JavaSE/compact3"; version:List<Version>="1.8"
org.osgi.framework.system.packages=javax.accessibility,javax.activation,javax.activity,javax.annotation,javax.annotation.processing,javax.crypto,javax.crypto.interfaces,javax.crypto.spec,javax.imageio,javax.imageio.event,javax.imageio.metadata,javax.imageio.plugins.bmp,javax.imageio.plugins.jpeg,javax.imageio.spi,javax.imageio.stream,javax.jws,javax.jws.soap,javax.lang.model,javax.lang.model.element,javax.lang.model.type,javax.lang.model.util,javax.management,javax.management.loading,javax.management.modelmbean,javax.management.monitor,javax.management.openmbean,javax.management.relation,javax.management.remote,javax.management.remote.rmi,javax.management.timer,javax.naming,javax.naming.directory,javax.naming.event,javax.naming.ldap,javax.naming.spi,javax.net,javax.net.ssl,javax.print,javax.print.attribute,javax.print.attribute.standard,javax.print.event,javax.rmi,javax.rmi.CORBA,javax.rmi.ssl,javax.script,javax.security.auth,javax.security.auth.callback,javax.security.auth.kerberos,javax.security.auth.login,javax.security.auth.spi,javax.security.auth.x500,javax.security.cert,javax.security.sasl,javax.sound.midi,javax.sound.midi.spi,javax.sound.sampled,javax.sound.sampled.spi,javax.sql,javax.sql.rowset,javax.sql.rowset.serial,javax.sql.rowset.spi,javax.swing,javax.swing.border,javax.swing.colorchooser,javax.swing.event,javax.swing.filechooser,javax.swing.plaf,javax.swing.plaf.basic,javax.swing.plaf.metal,javax.swing.plaf.multi,javax.swing.plaf.nimbus,javax.swing.plaf.synth,javax.swing.table,javax.swing.text,javax.swing.text.html,javax.swing.text.html.parser,javax.swing.text.rtf,javax.swing.tree,javax.swing.undo,javax.tools,javax.transaction,javax.transaction.xa,javax.xml,javax.xml.bind,javax.xml.bind.annotation,javax.xml.bind.annotation.adapters,javax.xml.bind.attachment,javax.xml.bind.helpers,javax.xml.bind.util,javax.xml.crypto,javax.xml.crypto.dom,javax.xml.crypto.dsig,javax.xml.crypto.dsig.dom,javax.xml.crypto.dsig.keyinfo,javax.xml.crypto.dsig.spec,javax.xml.datatype,javax.xml.namespace,javax.xml.parsers,javax.xml.soap,javax.xml.stream,javax.xml.stream.events,javax.xml.stream.util,javax.xml.transform,javax.xml.transform.dom,javax.xml.transform.sax,javax.xml.transform.stax,javax.xml.transform.stream,javax.xml.validation,javax.xml.ws,javax.xml.ws.handler,javax.xml.ws.handler.soap,javax.xml.ws.http,javax.xml.ws.soap,javax.xml.ws.spi,javax.xml.ws.spi.http,javax.xml.ws.wsaddressing,javax.xml.xpath,org.ietf.jgss,org.omg.CORBA,org.omg.CORBA_2_3,org.omg.CORBA_2_3.portable,org.omg.CORBA.DynAnyPackage,org.omg.CORBA.ORBPackage,org.omg.CORBA.portable,org.omg.CORBA.TypeCodePackage,org.omg.CosNaming,org.omg.CosNaming.NamingContextExtPackage,org.omg.CosNaming.NamingContextPackage,org.omg.Dynamic,org.omg.DynamicAny,org.omg.DynamicAny.DynAnyFactoryPackage,org.omg.DynamicAny.DynAnyPackage,org.omg.IOP,org.omg.IOP.CodecFactoryPackage,org.omg.IOP.CodecPackage,org.omg.Messaging,org.omg.PortableInterceptor,org.omg.PortableInterceptor.ORBInitInfoPackage,org.omg.PortableServer,org.omg.PortableServer.CurrentPackage,org.omg.PortableServer.POAManagerPackage,org.omg.PortableServer.POAPackage,org.omg.PortableServer.portable,org.omg.PortableServer.ServantLocatorPackage,org.omg.SendingContext,org.omg.stub.java.rmi,org.w3c.dom,org.w3c.dom.bootstrap,org.w3c.dom.css,org.w3c.dom.events,org.w3c.dom.html,org.w3c.dom.ls,org.w3c.dom.ranges,org.w3c.dom.stylesheets,org.w3c.dom.traversal,org.w3c.dom.views,org.w3c.dom.xpath,org.xml.sax,org.xml.sax.ext,org.xml.sax.helpers
org.osgi.framework.uuid=708c316a-b56c-0014-1d24-bd6ead517e77
org.osgi.framework.vendor=Eclipse
org.osgi.framework.version=1.8.0
org.osgi.supports.framework.extension=true
org.osgi.supports.framework.fragment=true
org.osgi.supports.framework.requirebundle=true
os.arch=x86
os.name=Windows 7
os.version=6.1
osgi.arch=x86
osgi.bundles=reference:file:org.eclipse.osgi.compatibility.state_1.0.0.v20140403-1907.jar,reference:file:org.eclipse.equinox.weaving.hook_1.1.100.weaving-hook-20140821.jar,reference:file:org.eclipse.equinox.simpleconfigurator_1.1.0.v20131217-1203.jar@1:start
osgi.bundles.defaultStartLevel=4
osgi.compatibility.bootdelegation=true
osgi.configuration.area=file:/C:/Eclipses/eclipse-epsilon-1.2-win32 (SMA2014-15)/configuration/
osgi.framework=file:/c:/Eclipses/eclipse-epsilon-1.2-win32 (SMA2014-15)/plugins/org.eclipse.osgi_3.10.0.v20140606-1445.jar
osgi.framework.extensions=reference:file:org.eclipse.osgi.compatibility.state_1.0.0.v20140403-1907.jar,reference:file:org.eclipse.equinox.weaving.hook_1.1.100.weaving-hook-20140821.jar
osgi.framework.shape=jar
osgi.framework.useSystemProperties=true
osgi.frameworkClassPath=., file:c:/Eclipses/eclipse-epsilon-1.2-win32 (SMA2014-15)/plugins/org.eclipse.osgi.compatibility.state_1.0.0.v20140403-1907.jar, file:c:/Eclipses/eclipse-epsilon-1.2-win32 (SMA2014-15)/plugins/org.eclipse.equinox.weaving.hook_1.1.100.weaving-hook-20140821.jar
osgi.install.area=file:/C:/Eclipses/eclipse-epsilon-1.2-win32 (SMA2014-15)/
osgi.instance.area=file:/J:/Master LSI-SMA/2014-15/WSSMA/
osgi.instance.area.default=file:/C:/Users/reinaqu/workspace/
osgi.logfile=J:\Master LSI-SMA\2014-15\WSSMA\.metadata\.log
osgi.nl=es_ES
osgi.os=win32
osgi.requiredJavaVersion=1.6
osgi.splashLocation=C:\Eclipses\eclipse-epsilon-1.2-win32 (SMA2014-15)\\plugins\org.eclipse.platform_4.4.0.v20140606-1215\splash.bmp
osgi.splashPath=platform:/base/plugins/org.eclipse.platform
osgi.syspath=c:\Eclipses\eclipse-epsilon-1.2-win32 (SMA2014-15)\plugins
osgi.tracefile=J:\Master LSI-SMA\2014-15\WSSMA\.metadata\trace.log
osgi.ws=win32
path.separator=;
sun.arch.data.model=32
sun.awt.enableExtraMouseButtons=true
sun.boot.class.path=C:\Program Files (x86)\Java\jre1.8.0_20\lib\resources.jar;C:\Program Files (x86)\Java\jre1.8.0_20\lib\rt.jar;C:\Program Files (x86)\Java\jre1.8.0_20\lib\sunrsasign.jar;C:\Program Files (x86)\Java\jre1.8.0_20\lib\jsse.jar;C:\Program Files (x86)\Java\jre1.8.0_20\lib\jce.jar;C:\Program Files (x86)\Java\jre1.8.0_20\lib\charsets.jar;C:\Program Files (x86)\Java\jre1.8.0_20\lib\jfr.jar;C:\Program Files (x86)\Java\jre1.8.0_20\classes
sun.boot.library.path=C:\Program Files (x86)\Java\jre1.8.0_20\bin
sun.cpu.endian=little
sun.cpu.isalist=pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86
sun.desktop=windows
sun.io.unicode.encoding=UnicodeLittle
sun.jnu.encoding=Cp1252
sun.management.compiler=HotSpot Client Compiler
sun.os.patch.level=Service Pack 1
user.country=ES
user.dir=C:\Eclipses\eclipse-epsilon-1.2-win32 (SMA2014-15)
user.home=C:\Users\reinaqu
user.language=es
user.name=reinaqu
user.script=
user.timezone=Europe/Paris
user.variant=

*** Features:
org.aspectj (1.8.3.20140820082000) "AspectJ Development Tools"
org.eclipse.ajdt (2.2.4.e44x-20140822-0700) "AspectJ Development Tools"
org.eclipse.cvs (1.4.100.v20140606-1215) "Eclipse CVS Client"
org.eclipse.draw2d (3.9.100.201405261516) "Graphical Editing Framework Draw2d"
org.eclipse.draw2d.sdk (3.9.100.201405261516) "Graphical Editing Framework Draw2d"
org.eclipse.egit (3.4.0.201406110918-r) "Git Team Provider"
org.eclipse.emf (2.10.0.v20140519-0339) "EMF - Eclipse Modeling Framework Runtime and Tools"
org.eclipse.emf.cdo (4.3.0.v20140520-1823) "CDO Model Repository Client"
org.eclipse.emf.cdo.compare (4.2.100.v20140606-1557) "CDO Model Repository Client Compare Support"
org.eclipse.emf.cdo.doc (4.2.100.v20140218-1708) "CDO Model Repository Documentation"
org.eclipse.emf.cdo.examples.installer (4.2.100.v20140114-0640) "CDO Model Repository Examples Installer"
org.eclipse.emf.cdo.server (4.3.0.v20140520-1823) "CDO Model Repository Server"
org.eclipse.emf.cdo.server.db (4.2.100.v20140526-0840) "CDO Model Repository Server DB"
org.eclipse.emf.codegen (2.10.0.v20140519-0339) "EMF Code Generation"
org.eclipse.emf.codegen.ecore (2.10.0.v20140519-0339) "EMF Ecore Code Generator"
org.eclipse.emf.codegen.ecore.ui (2.10.0.v20140519-0339) "EMF Ecore Code Generator UI"
org.eclipse.emf.codegen.ui (2.8.0.v20140519-0339) "EMF Code Generation UI"
org.eclipse.emf.common (2.10.0.v20140514-1158) "EMF Common"
org.eclipse.emf.common.ui (2.9.0.v20140519-0339) "EMF Common UI"
org.eclipse.emf.compare (3.0.0.201406111328) "EMF Compare Core"
org.eclipse.emf.compare.ide.ui (3.0.0.201406111328) "EMF Compare IDE UI"
org.eclipse.emf.compare.ide.ui.source (3.0.0.201406111328) "EMF Compare IDE UI"
org.eclipse.emf.compare.source (3.0.0.201406111328) "EMF Compare Core"
org.eclipse.emf.converter (2.10.0.v20140519-0339) "EMF Model Converter"
org.eclipse.emf.databinding (1.4.0.v20140519-0339) "EMF Data Binding"
org.eclipse.emf.databinding.edit (1.4.0.v20140519-0339) "EMF Edit Data Binding"
org.eclipse.emf.doc (2.9.0.v20140519-0339) "EMF Documentation"
org.eclipse.emf.ecore (2.10.0.v20140514-1158) "EMF Ecore"
org.eclipse.emf.ecore.edit (2.9.0.v20140519-0339) "EMF Ecore Edit"
org.eclipse.emf.ecore.editor (2.10.0.v20140519-0339) "EMF Sample Ecore Editor"
org.eclipse.emf.ecoretools.design (2.0.0.201406112035) "Ecore Graphical Modeler Based on Sirius"
org.eclipse.emf.ecp.cdo.feature (1.3.0.20140610-1606) "ECP CDO Model Repository Core"
org.eclipse.emf.ecp.e3.feature (1.3.0.20140610-1606) "ECP Eclipse 3.x Integration"
org.eclipse.emf.ecp.emfstore.feature (1.3.0.20140610-1606) "ECP EMFStore Provider Core Plugin"
org.eclipse.emf.ecp.feature (1.3.0.20140610-1606) "ECP Core"
org.eclipse.emf.ecp.view.categorization.feature (1.3.0.20140610-1606) "Categorization Model"
org.eclipse.emf.ecp.view.custom.feature (1.3.0.20140610-1606) "Custom Model"
org.eclipse.emf.ecp.view.group.feature (1.3.0.20140610-1606) "Group Model"
org.eclipse.emf.ecp.view.horizontal.feature (1.3.0.20140610-1606) "Horizontal View Model"
org.eclipse.emf.ecp.view.label.feature (1.3.0.20140610-1606) "Label Model"
org.eclipse.emf.ecp.view.model.controls.feature (1.3.0.20140610-1606) "Controls"
org.eclipse.emf.ecp.view.model.editor.feature (1.3.0.20140610-1606) "View Editor"
org.eclipse.emf.ecp.view.rule.feature (1.3.0.20140610-1606) "View Model Rule"
org.eclipse.emf.ecp.view.table.feature (1.3.0.20140610-1606) "Table View Model"
org.eclipse.emf.ecp.view.template.feature (1.3.0.20140610-1606) "Template Model"
org.eclipse.emf.ecp.view.template.helper.feature (1.3.0.20140610-1606) "Template Controls SWT"
org.eclipse.emf.ecp.view.treemasterdetail.feature (1.3.0.20140610-1606) "Vertical View Model"
org.eclipse.emf.ecp.view.unset.feature (1.3.0.20140610-1606) "View Model Unset Service"
org.eclipse.emf.ecp.view.validation.feature (1.3.0.20140610-1606) "View Model Validation Service"
org.eclipse.emf.ecp.view.vertical.feature (1.3.0.20140610-1606) "Vertical View Model"
org.eclipse.emf.ecp.viewmodel.feature (1.3.0.20140610-1606) "View Model"
org.eclipse.emf.ecp.workspace.feature (1.3.0.20140610-1606) "ECP Workspace Integration Core"
org.eclipse.emf.edit (2.10.0.v20140519-0339) "EMF Edit"
org.eclipse.emf.edit.ui (2.10.0.v20140519-0339) "EMF Edit UI"
org.eclipse.emf.eef.codegen.ecore-feature (1.3.0.201311221533) "EEF"
org.eclipse.emf.emfstore.client.feature (1.3.0.v20140610-1211) "EMFStore Client"
org.eclipse.emf.emfstore.client.ui.feature (1.3.0.v20140610-1211) "EMFStore Client UI"
org.eclipse.emf.emfstore.common.feature (1.3.0.v20140610-1211) "EMFStore Common"
org.eclipse.emf.emfstore.example.feature (1.3.0.v20140610-1211) "EMFStore example installer"
org.eclipse.emf.emfstore.server.feature (1.3.0.v20140610-1211) "EMFStore Server"
org.eclipse.emf.mapping (2.8.0.v20140519-0339) "EMF Mapping"
org.eclipse.emf.mapping.ecore (2.8.0.v20140519-0339) "EMF Ecore Mapping"
org.eclipse.emf.mapping.ecore.editor (2.9.0.v20140519-0339) "EMF Ecore Mapping Editor"
org.eclipse.emf.mapping.ui (2.8.0.v20140519-0339) "EMF Mapping UI"
org.eclipse.emf.query (1.8.0.201405281426) "EMF Model Query"
org.eclipse.emf.query.doc (1.8.0.201405281426) "EMF Model Query Documentation"
org.eclipse.emf.query.ocl (1.8.0.201405281426) "EMF Model Query OCL Integration"
org.eclipse.emf.transaction (1.8.0.201405281451) "EMF Model Transaction Core"
org.eclipse.emf.transaction.doc (1.8.0.201405281451) "EMF Model Transaction Documentation"
org.eclipse.emf.validation (1.8.0.201405281429) "EMF Validation Framework Core"
org.eclipse.emf.validation.doc (1.8.0.201405281429) "EMF Validation Framework Documentation"
org.eclipse.emf.validation.ocl (1.8.0.201405281429) "EMF Validation Framework OCL Integration"
org.eclipse.emf.workspace (1.8.0.201405281451) "EMF Model Transaction Workbench Integration Core"
org.eclipse.emf.workspace.doc (1.8.0.201405281451) "EMF Model Transaction Workbench Integration Documentation"
org.eclipse.epp.mpc (1.3.0.v20140529-2031) "Marketplace Client"
org.eclipse.epp.package.modeling.feature (4.4.0.20140612-0500) "EPP Modeling Bundle"
org.eclipse.gef (3.9.100.201405261516) "Graphical Editing Framework GEF"
org.eclipse.gef.sdk (3.9.100.201405261516) "Graphical Editing Framework GEF"
org.eclipse.gmf (1.8.0.201406111639) "Graphical Modeling Framework"
org.eclipse.gmf.doc (1.4.0.201406111907) "Graphical Modeling Framework Documentation"
org.eclipse.gmf.examples.runtime.ui.pde (1.8.0.201406111639) "Graphical Modeling Framework (GMF) Runtime Examples Plug-in"
org.eclipse.gmf.runtime.notation (1.8.0.201405281433) "GMF Notation Model Support"
org.eclipse.gmf.runtime.notation.sdk (1.8.0.201405281433) "Graphical Modeling Framework (GMF) Notation SDK"
org.eclipse.gmf.runtime.sdk (1.8.0.201406111639) "Graphical Modeling Framework Runtime SDK"
org.eclipse.gmf.sdk (3.2.0.201406111907) "Graphical Modeling Framework SDK"
org.eclipse.gmf.tooling (3.2.0.201406111907) "Graphical Modeling Framework Tooling"
org.eclipse.gmf.tooling.runtime (3.2.0.201406111907) "GMF Tooling-Specific Runtime Extensions Plugin"
org.eclipse.help (2.0.102.v20140606-1215) "Help System Base"
org.eclipse.jdt (3.10.0.v20140606-1536) "Eclipse Java Development Tools"
org.eclipse.jgit (3.4.0.201406110918-r) "JGit Core"
org.eclipse.m2m.atl (3.5.0.v201405260755) "ATL - ATLAS Transformation Language"
org.eclipse.m2m.atl.doc (3.5.0.v201405260755) "ATL Documentation"
org.eclipse.m2m.atl.examples (3.5.0.v201405260755) "ATL Examples"
org.eclipse.mylyn_feature (3.12.0.v20140605-1718) "Mylyn Tasks"
org.eclipse.mylyn.bugzilla_feature (3.12.0.v20140605-1718) "Mylyn Tasks"
org.eclipse.mylyn.commons (3.12.0.v20140605-1728) "Mylyn Commons"
org.eclipse.mylyn.commons.identity (1.4.0.v20140605-1728) "Mylyn Commons"
org.eclipse.mylyn.commons.notifications (1.4.0.v20140605-1728) "Mylyn Commons"
org.eclipse.mylyn.commons.repositories (1.4.0.v20140605-1728) "Mylyn Commons"
org.eclipse.mylyn.context_feature (3.12.0.v20140606-1805) "Mylyn Context"
org.eclipse.mylyn.discovery (3.12.0.v20140605-1728) "Mylyn Commons"
org.eclipse.mylyn.ide_feature (3.12.0.v20140606-1805) "Mylyn Context"
org.eclipse.mylyn.java_feature (3.12.0.v20140606-1805) "Mylyn Context"
org.eclipse.mylyn.monitor (3.12.0.v20140605-1728) "Mylyn Commons"
org.eclipse.mylyn.pde_feature (3.12.0.v20140606-1805) "Mylyn Context"
org.eclipse.mylyn.tasks.ide (3.12.0.v20140605-1718) "Mylyn Tasks"
org.eclipse.mylyn.team_feature (3.12.0.v20140606-1805) "Mylyn Context"
org.eclipse.mylyn.wikitext_feature (2.1.0.v20140606-1205) "Mylyn WikiText"
org.eclipse.net4j (4.3.0.v20140308-0604) "Net4j Signalling Platform"
org.eclipse.net4j.db (4.3.0.v20140308-0604) "Net4j DB Framework"
org.eclipse.net4j.db.h2 (4.2.100.v20140114-0640) "Net4j DB Framework H2 Adapter"
org.eclipse.net4j.examples.installer (4.2.100.v20140114-0640) "Net4j Signalling Platform Examples Installer"
org.eclipse.net4j.util (4.3.0.v20140308-0604) "Net4j Utilities"
org.eclipse.net4j.util.ui (4.3.0.v20140308-0604) "Net4j Utilities UI"
org.eclipse.ocl (3.4.0.v20140528-1458) "OCL for Ecore"
org.eclipse.ocl.doc (3.4.0.v20140609-1739) "OCL Documentation"
org.eclipse.ocl.edit (5.0.0.v20140524-1436) "OCL Edit Support"
org.eclipse.ocl.examples (3.4.0.v20140609-1739) "OCL Examples and Editors"
org.eclipse.ocl.examples.classic (5.0.0.v20140609-1739) "OCL Classic SDK"
org.eclipse.ocl.examples.unified (3.4.0.v20140609-1739) "OCL Unified SDK"
org.eclipse.ocl.examples.unified.core (3.4.0.v20140602-1102) "OCL Unified SDK"
org.eclipse.ocl.ui (2.0.0.v20140524-1436) "OCL User Interface"
org.eclipse.ocl.uml (5.0.0.v20140524-1436) "OCL for UML"
org.eclipse.pde (3.10.0.v20140606-1215) "PDE"
org.eclipse.platform (4.4.0.v20140606-1558) "Eclipse Platform"
org.eclipse.rcp (4.4.0.v20140606-1445) "Eclipse RCP"
org.eclipse.sdk (4.4.0.v20140606-1558) "Eclipse Project SDK"
org.eclipse.sirius.runtime (1.0.0.201406040902) "Sirius Core Runtime"
org.eclipse.sirius.runtime.acceleo (1.0.0.201406040902) "Sirius Support for Acceleo 3 Expressions"
org.eclipse.sirius.runtime.ide.ui (1.0.0.201406040902) "Sirius UI Commons"
org.eclipse.uml2 (5.0.0.v20140602-0749) "UML2"
org.eclipse.uml2.codegen.ecore.ui (2.0.0.v20140602-0749) "UML2 Ecore Code Generation UI"
org.eclipse.uml2.common (2.0.0.v20140602-0749) "UML2 Common"
org.eclipse.uml2.common.edit (2.0.0.v20140602-0749) "UML2 Common Edit Support"
org.eclipse.uml2.doc (5.0.0.v20140602-0749) "UML2 Documentation"
org.eclipse.uml2.examples (5.0.0.v20140602-0749) "UML2 Examples"
org.eclipse.uml2.uml (5.0.0.v20140602-0749) "UML2 UML Model"
org.eclipse.uml2.uml.edit (5.0.0.v20140602-0749) "UML2 UML Edit Support"
org.eclipse.xpand (2.0.0.v201406030414) "Xpand Core "
org.eclipse.xpand.doc (2.0.0.v201406030414) "M2T Xpand Documentation "
org.eclipse.xpand.examples (2.0.0.v201406030414) "Xpand Examples "
org.eclipse.xpand.ui (2.0.0.v201406030414) "Xpand editor "
org.eclipse.xsd (2.10.0.v20140519-0339) "XSD Model"
org.eclipse.xsd.doc (2.9.0.v20140519-0339) "XSD Documentation"
org.eclipse.xsd.ecore.converter (2.9.0.v20140519-0339) "XSD Ecore Converter"
org.eclipse.xsd.edit (2.8.0.v20140519-0339) "XSD Edit"
org.eclipse.xsd.editor (2.8.0.v20140519-0339) "XSD Sample Editor"
org.eclipse.xsd.mapping (2.8.0.v20140519-0339) "XSD Mapping"
org.eclipse.xsd.mapping.editor (2.9.0.v20140519-0339) "XSD Mapping Editor"
org.eclipse.xtend (2.0.0.v201406030414) "Xtend Core "
org.eclipse.xtend.typesystem.emf (2.0.0.v201406030414) "Xtend EMF Typesystem "
org.eclipse.xtend.typesystem.uml2 (2.0.0.v201406030414) "Xtend UML2 Typesystem"
org.eclipse.xtend.typesystem.xsd (2.0.0.v201406030414) "Xtend XSD Typesystem "
org.eclipse.xtend.ui (2.0.0.v201406030414) "Xtend UI "

*** Plug-in Registry:
com.google.guava (15.0.0.v201403281430) "Guava: Google Core Libraries for Java" [Resolved]
com.google.inject (3.0.0.v201312141243) "Google Guice (No AOP)" [Resolved]
com.ibm.icu (52.1.0.v201404241930) "International Components for Unicode for Java (ICU4J)" [Active]
com.jcraft.jsch (0.1.50.v201403120620) "JSch" [Resolved]
com.sun.el (2.2.0.v201303151357) "Javax Expression Language Reference Implementation Bundle" [Resolved]
javaewah (0.7.9.v201401101600) "JavaEWAH" [Resolved]
javax.annotation (1.2.0.v201401042248) "javax.annotation Bundle" [Resolved]
javax.el (2.2.0.v201303151357) "Javax Expression Language Bundle" [Resolved]
javax.inject (1.0.0.v20091030) "Atinject Dependency Injection Annotations" [Resolved]
javax.servlet (3.0.0.v201112011016) "Servlet API Bundle" [Resolved]
javax.servlet.jsp (2.2.0.v201112011158) "JSP API Bundle" [Resolved]
javax.xml (1.3.4.v201005080400) "JAXP XML" [Resolved]
lpg.runtime.java (2.0.17.v201004271640) "SourceForge LPG Java Runtime" [Resolved]
org.antlr.runtime (3.2.0.v201101311130) "ANTLR Runtime" [Resolved]
org.antlr.runtime (3.0.0.v200803061811) "ANTLR Runtime" [Resolved]
org.antlr.runtime_3.1.b1 (3.1) "ANTLR 3.1.b1 runtime" [Resolved]
org.apache.ant (1.9.2.v201404171502) "Apache Ant" [Resolved]
org.apache.batik.bridge (1.6.0.v201011041432) "Apache Batik Bridge/GVT/Scripting" [Resolved]
org.apache.batik.css (1.7.0.v201011041433) "Apache Batik CSS" [Resolved]
org.apache.batik.css (1.6.0.v201011041432) "Apache Batik CSS" [Resolved]
org.apache.batik.dom (1.6.0.v201011041432) "Apache Batik DOM" [Resolved]
org.apache.batik.dom.svg (1.6.0.v201011041432) "Apache Batik SVG DOM" [Resolved]
org.apache.batik.ext.awt (1.6.0.v201011041432) "Apache Batik AWT Utilities" [Resolved]
org.apache.batik.parser (1.6.0.v201011041432) "Apache Batik Parser" [Resolved]
org.apache.batik.pdf (1.6.0.v201105071520) "Apache Batik PDF" [Resolved]
org.apache.batik.svggen (1.6.0.v201011041432) "Apache Batik SVG Generation" [Resolved]
org.apache.batik.transcoder (1.6.0.v201011041432) "Apache Batik Transcoder" [Resolved]
org.apache.batik.util (1.7.0.v201011041433) "Apache Batik Utilities" [Resolved]
org.apache.batik.util (1.6.0.v201011041432) "Apache Batik Utilities" [Resolved]
org.apache.batik.util.gui (1.7.0.v200903091627) "Apache Batik GUI Utilities" [Resolved]
org.apache.batik.util.gui (1.6.0.v201011041432) "Apache Batik GUI Utilities" [Resolved]
org.apache.batik.xml (1.6.0.v201011041432) "Apache Batik XML" [Resolved]
org.apache.commons.cli (1.2.0.v201404270220) "Apache Commons CLI" [Resolved]
org.apache.commons.codec (1.6.0.v201305230611) "Apache Commons Codec Plug-in" [Resolved]
org.apache.commons.compress (1.6.0.v201310281400) "Apache Commons Compress" [Resolved]
org.apache.commons.httpclient (3.1.0.v201012070820) "Apache Commons Httpclient" [Resolved]
org.apache.commons.io (2.0.1.v201105210651) "Apache Commons IO" [Resolved]
org.apache.commons.lang (2.6.0.v201404270220) "Apache Commons Lang" [Resolved]
org.apache.commons.logging (1.1.1.v201101211721) "Apache Commons Logging Plug-in" [Resolved]
org.apache.felix.gogo.command (0.10.0.v201209301215) "Apache Felix Gogo Command" [Active]
org.apache.felix.gogo.runtime (0.10.0.v201209301036) "Apache Felix Gogo Runtime" [Active]
org.apache.felix.gogo.shell (0.10.0.v201212101605) "Apache Felix Gogo Shell" [Active]
org.apache.httpcomponents.httpclient (4.2.6.v201311072007) "Apache HttpComponents HttpClient OSGi bundle" [Resolved]
org.apache.httpcomponents.httpcore (4.2.5.v201311072007) "Apache HttpComponents HttpCore" [Resolved]
org.apache.jasper.glassfish (2.2.2.v201205150955) "JSP 2.2 implementation from Glassfish" [Resolved]
org.apache.log4j (1.2.15.v201012070815) "Apache Jakarta log4j Plug-in" [Resolved]
org.apache.lucene.analysis (3.5.0.v20120725-1805) "Apache Lucene Analysis" [Resolved]
org.apache.lucene.core (3.5.0.v20120725-1805) "Apache Lucene Core" [Resolved]
org.apache.ws.commons.util (1.0.1.v20100518-1140) "WS Commons Util Plug-in" [Resolved]
org.apache.xerces (2.9.0.v201101211617) "Apache Xerces-J" [Resolved]
org.apache.xml.resolver (1.2.0.v201005080400) "Apache XmlResolver" [Resolved]
org.apache.xml.serializer (2.7.1.v201005080400) "Apache XML Commons Serializer" [Resolved]
org.apache.xmlrpc (3.0.0.v20100427-1100) "Apache XML-RPC Plug-in" [Resolved]
org.aspectj.ajde (1.8.3.20140820082000) "AspectJ" [Active]
org.aspectj.runtime (1.8.3.20140820082000) "AspectJ Runtime" [Resolved]
org.aspectj.weaver (1.8.3.20140820082000) "AspectJ Weaver" [Resolved]
org.eclipse.acceleo.common (3.5.0.201406101309) "Acceleo Common" [Starting]
org.eclipse.acceleo.engine (3.5.0.201406101309) "Acceleo Evaluation Engine" [Starting]
org.eclipse.acceleo.model (3.5.0.201406101309) "Acceleo Model" [Active]
org.eclipse.acceleo.parser (3.5.0.201406101309) "Acceleo Parser" [Active]
org.eclipse.acceleo.profiler (3.5.0.201406101309) "Acceleo Profiler Model" [Active]
org.eclipse.ajdt.core (2.2.4.e44x-20140822-0700) "AspectJ Development Tools Core" [Active]
org.eclipse.ajdt.doc.user (2.2.4.e44x-20140822-0700) "AspectJ Development Tools User Documentation" [Resolved]
org.eclipse.ajdt.examples (2.2.4.e44x-20140822-0700) "AspectJ Examples" [Starting]
org.eclipse.ajdt.mylyn.ui (2.2.4.e44x-20140822-0700) "Mylyn-AJDT Bridge Plug-in" [Starting]
org.eclipse.ajdt.ui (2.2.4.e44x-20140822-0700) "AspectJ Development Tools UI" [Active]
org.eclipse.amalgam.discovery.core (1.5.0.201404290822) "Amalgam Component Discovery Core" [Active]
org.eclipse.amalgam.discovery.modeling (1.5.0.201404290822) "Amalgam Modeling Discovery UI" [Starting]
org.eclipse.amalgam.discovery.ui (1.5.0.201404290822) "Amalgam Component Discovery User Interface" [Starting]
org.eclipse.ant.core (3.3.0.v20140518-0042) "Ant Build Tool Core" [Starting]
org.eclipse.ant.launching (1.0.400.v20140518-0030) "Ant Launching Support" [Starting]
org.eclipse.ant.ui (3.5.500.v20140521-1557) "Ant UI" [Active]
org.eclipse.aspectj (2.2.4.e44x-20140822-0700) "AspectJ Development Tools" [Starting]
org.eclipse.compare (3.5.500.v20131106-1552) "Compare Support" [Active]
org.eclipse.compare.core (3.5.400.v20130903-0736) "Core Compare Support" [Active]
org.eclipse.compare.win32 (1.0.200.v20130514-1224) "Compare Support for Word" [Starting]
org.eclipse.contribution.visualiser (2.2.4.e44x-20140822-0700) "Visualiser Plug-in" [Starting]
org.eclipse.contribution.weaving.jdt (2.2.4.e44x-20140822-0700) "JDT Weaving" [Active]
org.eclipse.contribution.xref.core (2.2.4.e44x-20140822-0700) "Cross Reference Core Plugin" [Starting]
org.eclipse.contribution.xref.ui (2.2.4.e44x-20140822-0700) "Cross Reference UI Plugin" [Starting]
org.eclipse.core.commands (3.6.100.v20140528-1422) "Commands" [Resolved]
org.eclipse.core.contenttype (3.4.200.v20140207-1251) "Eclipse Content Mechanism" [Active]
org.eclipse.core.databinding (1.4.1.v20140214-0004) "JFace Data Binding" [Starting]
org.eclipse.core.databinding.beans (1.2.200.v20140214-0004) "JFace Data Binding for JavaBeans" [Resolved]
org.eclipse.core.databinding.observable (1.4.1.v20140210-1835) "JFace Data Binding Observables" [Active]
org.eclipse.core.databinding.property (1.4.200.v20140214-0004) "JFace Data Binding Properties" [Starting]
org.eclipse.core.expressions (3.4.600.v20140128-0851) "Expression Language" [Active]
org.eclipse.core.externaltools (1.0.300.v20140219-0051) "External Tools Headless Support" [Starting]
org.eclipse.core.filebuffers (3.5.400.v20140127-1516) "File Buffers" [Active]
org.eclipse.core.filesystem (1.4.100.v20140514-1614) "Core File Systems" [Active]
org.eclipse.core.filesystem.java7 (1.0.0.v20140429-1531) "Core File System for Java 7 and newer" [Resolved]
org.eclipse.core.filesystem.win32.x86 (1.4.0.v20140124-1940) "Core File System for Windows" [Resolved]
org.eclipse.core.jobs (3.6.0.v20140424-0053) "Eclipse Jobs Mechanism" [Active]
org.eclipse.core.net (1.2.200.v20140124-2013) "Internet Connection Management" [Active]
org.eclipse.core.net.win32.x86 (1.0.100.v20140124-2013) "Proxy for Windows" [Resolved]
org.eclipse.core.resources (3.9.0.v20140514-1307) "Core Resource Management" [Active]
org.eclipse.core.resources.win32.x86 (3.5.100.v20140124-1940) "Core Resource Management Win32 Fragment" [Resolved]
org.eclipse.core.runtime (3.10.0.v20140318-2214) "Core Runtime" [Active]
org.eclipse.core.runtime.compatibility (3.2.200.v20140128-0851) "Core Runtime Plug-in Compatibility" [Active]
org.eclipse.core.runtime.compatibility.registry (3.5.300.v20140128-0851) "Eclipse Registry Compatibility Fragment" [Resolved]
org.eclipse.core.variables (3.2.800.v20130819-1716) "Core Variables" [Active]
org.eclipse.cvs (1.4.100.v20140606-1215) "Eclipse CVS Client" [Starting]
org.eclipse.debug.core (3.9.0.v20140521-1435) "Debug Core" [Active]
org.eclipse.debug.ui (3.10.0.v20140604-1637) "Debug UI" [Active]
org.eclipse.draw2d (3.9.100.201405261516) "Graphical Editing Framework Draw2d" [Active]
org.eclipse.draw2d.doc.isv (3.9.100.201405261516) "Graphical Editing Framework Draw2d Component Documentation" [Starting]
org.eclipse.e4.core.commands (0.10.2.v20140424-2344) "Eclipse e4 core commands" [Active]
org.eclipse.e4.core.contexts (1.3.100.v20140407-1019) "Eclipse Contexts" [Active]
org.eclipse.e4.core.di (1.4.0.v20140414-1837) "Eclipse Dependency Injection" [Active]
org.eclipse.e4.core.di.extensions (0.12.0.v20140417-2033) "Eclipse Dependency Injection Extensions" [Active]
org.eclipse.e4.core.services (1.2.0.v20140509-1840) "Eclipse Application Services" [Active]
org.eclipse.e4.ui.bindings (0.10.200.v20140424-2042) "Eclipse Bindings Support" [Active]
org.eclipse.e4.ui.css.core (0.10.100.v20140424-2042) "Eclipse CSS Core Support" [Resolved]
org.eclipse.e4.ui.css.swt (0.11.100.v20140522-1045) "Eclipse CSS SWT Support" [Active]
org.eclipse.e4.ui.css.swt.theme (0.9.300.v20140424-2042) "Eclipse CSS SWT Theme Support" [Active]
org.eclipse.e4.ui.di (1.0.0.v20140328-2112) "Eclipse UI Dependency Injection" [Active]
org.eclipse.e4.ui.model.workbench (1.1.0.v20140512-1820) "Eclipse Workbench Model" [Active]
org.eclipse.e4.ui.services (1.1.0.v20140328-1925) "Eclipse UI Application Services" [Active]
org.eclipse.e4.ui.widgets (1.0.0.v20140514-1823) "Eclipse UI Custom widgets" [Resolved]
org.eclipse.e4.ui.workbench (1.1.0.v20140528-1949) "Eclipse e4 Workbench" [Active]
org.eclipse.e4.ui.workbench.addons.swt (1.1.0.v20140602-1537) "Eclipse e4 Workbench Add-ons" [Active]
org.eclipse.e4.ui.workbench.renderers.swt (0.12.0.v20140521-1818) "Eclipse e4 Workbench SWT Renderer" [Active]
org.eclipse.e4.ui.workbench.swt (0.12.100.v20140530-1436) "Eclipse e4 Workbench SWT" [Active]
org.eclipse.e4.ui.workbench3 (0.12.0.v20140227-2118) "Bundle for Workbench APIs available in e4" [Resolved]
org.eclipse.ecf (3.4.0.v20140528-1625) "ECF Core API" [Starting]
org.eclipse.ecf.filetransfer (5.0.0.v20140528-1625) "ECF Filetransfer API" [Active]
org.eclipse.ecf.identity (3.4.0.v20140528-1625) "ECF Identity Core API" [Starting]
org.eclipse.ecf.provider.filetransfer (3.2.200.v20140528-1625) "ECF Filetransfer Provider" [Starting]
org.eclipse.ecf.provider.filetransfer.httpclient4 (1.0.500.v20140528-1625) "ECF HttpComponents Filetransfer Provider" [Starting]
org.eclipse.ecf.provider.filetransfer.httpclient4.ssl (1.0.0.v20140528-1625) "ECF HttpComponents Filetransfer Provider" [Resolved]
org.eclipse.ecf.provider.filetransfer.ssl (1.0.0.v20140528-1625) "ECF Filetransfer Provider" [Resolved]
org.eclipse.ecf.ssl (1.1.0.v20140528-1625) "ECF Core API" [Resolved]
org.eclipse.egit (3.4.0.201406110918-r) "Git Team Provider" [Starting]
org.eclipse.egit.core (3.4.0.201406110918-r) "Git Team Provider Core" [Active]
org.eclipse.egit.doc (3.4.0.201406110918-r) "Git Team Provider Documentation" [Resolved]
org.eclipse.egit.ui (3.4.0.201406110918-r) "Git Team Provider UI" [Active]
org.eclipse.emf (2.6.0.v20140519-0339) "EMF - Eclipse Modeling Framework Runtime and Tools" [Starting]
org.eclipse.emf.ant (2.8.0.v20140519-0339) "EMF Ant Tasks" [Starting]
org.eclipse.emf.cdo (4.3.0.v20140520-1823) "CDO Model Repository Client" [Active]
org.eclipse.emf.cdo.admin (4.1.200.v20140114-0640) "CDO Model Repository Client Admin Support" [Starting]
org.eclipse.emf.cdo.common (4.3.0.v20140309-0644) "CDO Model Repository Common" [Active]
org.eclipse.emf.cdo.common.db (3.0.400.v20140114-0640) "CDO Model Repository Common DB Support" [Starting]
org.eclipse.emf.cdo.compare (4.2.100.v20140606-1557) "CDO Model Repository Client Compare Support" [Starting]
org.eclipse.emf.cdo.doc (4.1.200.v20140218-1708) "CDO Model Repository Documentation" [Resolved]
org.eclipse.emf.cdo.ecore.retrofit (4.2.100.v20140308-0604) "CDO Model Repository Client (Retrofit for EMF before 2.9)" [Resolved]
org.eclipse.emf.cdo.edit (4.3.0.v20140308-0841) "CDO Model Repository Client Edit Support" [Starting]
org.eclipse.emf.cdo.efs (4.0.200.v20140114-0640) "CDO Model Repository Client EFS Support" [Starting]
org.eclipse.emf.cdo.examples.installer (4.1.200.v20140114-0640) "CDO Model Repository Examples Installer" [Starting]
org.eclipse.emf.cdo.expressions (4.3.0.v20140309-0644) "CDO Model Repository Expressions" [Active]
org.eclipse.emf.cdo.expressions.edit (4.3.0.v20140114-0640) "CDO Model Repository Expressions Edit Support" [Starting]
org.eclipse.emf.cdo.expressions.editor (4.3.0.v20140218-1708) "CDO Model Repository Expressions Editor" [Starting]
org.eclipse.emf.cdo.location (4.0.300.v20140114-0640) "CDO Model Repository Client Location" [Starting]
org.eclipse.emf.cdo.migrator (3.0.400.v20140308-0841) "CDO Model Repository Migrator Tool" [Resolved]
org.eclipse.emf.cdo.net4j (4.1.200.v20140308-0604) "CDO Model Repository Client Net4j Support" [Active]
org.eclipse.emf.cdo.security (4.3.0.v20140309-0644) "CDO Model Repository Security" [Active]
org.eclipse.emf.cdo.security.edit (4.3.0.v20140114-0640) "CDO Model Repository Security Edit Support" [Starting]
org.eclipse.emf.cdo.security.editor (4.2.100.v20140129-1702) "CDO Model Repository Security Editor" [Starting]
org.eclipse.emf.cdo.security.ui (4.3.0.v20140309-0644) "CDO Model Repository Security UI" [Starting]
org.eclipse.emf.cdo.server (4.3.0.v20140309-0644) "CDO Model Repository Server" [Active]
org.eclipse.emf.cdo.server.admin (4.2.0.v20140309-0644) "CDO Model Repository Server Admin Support" [Active]
org.eclipse.emf.cdo.server.db (4.2.100.v20140526-0840) "CDO Model Repository Server DB" [Starting]
org.eclipse.emf.cdo.server.net4j (4.1.100.v20140308-0604) "CDO Model Repository Server Net4j Support" [Starting]
org.eclipse.emf.cdo.server.ocl (4.2.0.v20140309-0644) "CDO Model Repository Server OCL Support" [Resolved]
org.eclipse.emf.cdo.server.product (4.1.200.v20140323-1856) "CDO Model Repository Server Product" [Starting]
org.eclipse.emf.cdo.server.security (4.3.0.v20140309-0644) "CDO Model Repository Server Security Support" [Starting]
org.eclipse.emf.cdo.team (4.1.100.v20140129-1702) "CDO Model Repository Client Team Support" [Starting]
org.eclipse.emf.cdo.transfer (4.2.100.v20140114-0640) "CDO Transfer Framework" [Starting]
org.eclipse.emf.cdo.transfer.repository (4.2.100.v20140114-0640) "CDO Transfer Framework (Repository Support)" [Starting]
org.eclipse.emf.cdo.transfer.ui (4.2.100.v20140114-0640) "CDO Transfer Framework (UI)" [Starting]
org.eclipse.emf.cdo.transfer.workspace (4.2.100.v20140129-1702) "CDO Transfer Framework (Workspace Support)" [Starting]
org.eclipse.emf.cdo.transfer.workspace.ui (4.2.100.v20140114-0640) "CDO Transfer Framework (Workspace Support UI)" [Starting]
org.eclipse.emf.cdo.ui (4.3.0.v20140305-1745) "CDO Model Repository Client UI" [Active]
org.eclipse.emf.cdo.ui.admin (4.1.200.v20140308-0604) "CDO Model Repository Client UI Admin" [Starting]
org.eclipse.emf.cdo.ui.compare (4.2.100.v20140312-0617) "CDO Model Repository Client UI Compare" [Starting]
org.eclipse.emf.cdo.ui.efs (4.1.100.v20140114-0640) "CDO Model Repository Client UI EFS Support" [Starting]
org.eclipse.emf.cdo.ui.ide (4.1.100.v20140114-0640) "CDO Model Repository Client UI IDE" [Starting]
org.eclipse.emf.cdo.ui.location (4.0.300.v20140114-0640) "CDO Model Repository Client UI Location" [Starting]
org.eclipse.emf.cdo.ui.shared (4.2.0.v20140114-0640) "CDO Model Repository Client UI Shared" [Starting]
org.eclipse.emf.cdo.ui.team (4.2.100.v20140408-1115) "CDO Model Repository Client UI Team" [Starting]
org.eclipse.emf.cdo.ui.workspace (4.0.300.v20140114-0640) "CDO Model Repository Client UI Workspace" [Starting]
org.eclipse.emf.cdo.workspace (4.1.200.v20140114-0640) "CDO Model Repository Client Workspace" [Starting]
org.eclipse.emf.cdo.workspace.efs (4.0.200.v20140114-0640) "CDO Model Repository Client Workspace EFS" [Starting]
org.eclipse.emf.cheatsheets (2.5.0.v20140519-0339) "EMF Cheat Sheets" [Starting]
org.eclipse.emf.codegen (2.10.0.v20140519-0339) "EMF Code Generation" [Active]
org.eclipse.emf.codegen.ecore (2.10.0.v20140519-0339) "EMF Ecore Code Generator" [Active]
org.eclipse.emf.codegen.ecore.ui (2.10.0.v20140519-0339) "EMF Ecore Code Generator UI" [Active]
org.eclipse.emf.codegen.ui (2.6.0.v20140519-0339) "EMF Code Generation UI" [Starting]
org.eclipse.emf.common (2.10.0.v20140514-1158) "EMF Common" [Active]
org.eclipse.emf.common.ui (2.9.0.v20140519-0339) "EMF Common UI" [Active]
org.eclipse.emf.compare (3.1.0.201406111328) "EMF Compare Core" [Active]
org.eclipse.emf.compare.doc (3.1.0.201406111328) "EMF Compare Documentation" [Starting]
org.eclipse.emf.compare.edit (4.0.0.201406111328) "EMF Compare Edit Support" [Active]
org.eclipse.emf.compare.ide (3.1.0.201406111328) "EMF Compare IDE integration" [Active]
org.eclipse.emf.compare.ide.ui (4.0.0.201406111328) "EMF Compare IDE UI" [Active]
org.eclipse.emf.compare.rcp (2.2.0.201406111328) "EMF Compare RCP" [Active]
org.eclipse.emf.compare.rcp.ui (4.0.0.201406111328) "EMF Compare RCP UI" [Starting]
org.eclipse.emf.converter (2.7.0.v20140519-0339) "EMF Model Converter" [Starting]
org.eclipse.emf.databinding (1.3.0.v20140519-0339) "EMF Data Binding" [Starting]
org.eclipse.emf.databinding.edit (1.3.0.v20140519-0339) "EMF Edit Data Binding" [Starting]
org.eclipse.emf.doc (2.7.0.v20140519-0339) "EMF Documentation" [Starting]
org.eclipse.emf.ecore (2.10.0.v20140514-1158) "EMF Ecore" [Active]
org.eclipse.emf.ecore.change (2.10.0.v20140514-1158) "EMF Change Model" [Active]
org.eclipse.emf.ecore.change.edit (2.6.0.v20140519-0339) "EMF Change Edit" [Starting]
org.eclipse.emf.ecore.edit (2.9.0.v20140519-0339) "EMF Ecore Edit" [Active]
org.eclipse.emf.ecore.editor (2.10.0.v20140519-0339) "EMF Sample Ecore Editor" [Active]
org.eclipse.emf.ecore.xmi (2.10.0.v20140514-1158) "EMF XML/XMI Persistence" [Active]
org.eclipse.emf.ecoretools (2.0.0.201406112035) "Ecore Tools" [Starting]
org.eclipse.emf.ecoretools.design (2.0.0.201406112035) "Ecore Graphical Modeler Based on Sirius" [Active]
org.eclipse.emf.ecoretools.design.properties (2.0.0.201406112035) "org.eclipse.emf.ecoretools.design.properties" [Resolved]
org.eclipse.emf.ecoretools.doc (2.0.0.201406112035) "Ecore Tools Documentation" [Starting]
org.eclipse.emf.ecoretools.properties (2.0.0.201406112035) "Ecore Tools Properties" [Starting]
org.eclipse.emf.ecoretools.tabbedproperties (2.0.0.201406112035) "EMF Tabbed Properties" [Starting]
org.eclipse.emf.ecp.application.e3 (1.3.0.20140610-1606) "ECP Demo Application Eclipse 3.x" [Starting]
org.eclipse.emf.ecp.cdo.core (1.3.0.20140610-1606) "ECP CDO Model Repository Core" [Starting]
org.eclipse.emf.ecp.cdo.ui (1.3.0.20140610-1606) "CDO Model Repository ECP UI" [Starting]
org.eclipse.emf.ecp.common (1.3.0.20140610-1606) "ECP Common" [Starting]
org.eclipse.emf.ecp.core (1.3.0.20140610-1606) "ECP Core" [Starting]
org.eclipse.emf.ecp.core.emffilter (1.3.0.20140610-1606) "ECP Emffilter" [Starting]
org.eclipse.emf.ecp.edit (1.3.0.20140610-1606) "ECP Edit" [Starting]
org.eclipse.emf.ecp.edit.swt (1.3.0.20140610-1606) "Edit SWT" [Starting]
org.eclipse.emf.ecp.editor.e3 (1.3.0.20140610-1606) "ECP Editor integration for 3.x Workbench" [Starting]
org.eclipse.emf.ecp.emfstore.core (1.3.0.20140610-1606) "ECP EMFStore Provider Core Plugin" [Starting]
org.eclipse.emf.ecp.emfstore.ui (1.3.0.20140610-1606) "ECP EMFStore UI Provider" [Starting]
org.eclipse.emf.ecp.emfstore.ui.e3 (1.3.0.20140610-1606) "ECP EMFStore E3" [Starting]
org.eclipse.emf.ecp.emfstore.ui.search (1.3.0.20140610-1606) "ECP Search UI" [Starting]
org.eclipse.emf.ecp.explorereditorbridge (1.3.0.20140610-1606) "ECP Explorer Editor Bridge" [Starting]
org.eclipse.emf.ecp.ide.editor.view (1.3.0.20140610-1606) "IDE View Editor" [Starting]
org.eclipse.emf.ecp.ide.editor.view.control (1.3.0.20140610-1606) "IDE Specific Control" [Starting]
org.eclipse.emf.ecp.ide.editor.viewmodel (1.3.0.20140610-1606) "Viewmodel" [Resolved]
org.eclipse.emf.ecp.ide.util (1.3.0.20140610-1606) "ECP Ecore Helper Plugin" [Starting]
org.eclipse.emf.ecp.ide.view.service (1.3.0.20140610-1606) "IDE ViewModel Service" [Starting]
org.eclipse.emf.ecp.makeithappen.wizards (1.3.0.20140610-1606) "Make It Happen Examples" [Starting]
org.eclipse.emf.ecp.ui (1.3.0.20140610-1606) "ECP UI" [Starting]
org.eclipse.emf.ecp.ui.e3 (1.3.0.20140610-1606) "ECP Eclipse 3.x Integration" [Starting]
org.eclipse.emf.ecp.ui.rcp (1.3.0.20140610-1606) "ECP UI SWT" [Resolved]
org.eclipse.emf.ecp.ui.view (1.3.0.20140610-1606) "MPI UI View" [Starting]
org.eclipse.emf.ecp.ui.view.editor.controls (1.3.0.20140610-1606) "Controls" [Starting]
org.eclipse.emf.ecp.ui.view.swt (1.3.0.20140610-1606) "SWT Renderer" [Starting]
org.eclipse.emf.ecp.validation (1.3.0.20140610-1606) "ECP Validation Service" [Starting]
org.eclipse.emf.ecp.validation.connector (1.3.0.20140610-1606) "ECP Validation Connector Plugin" [Starting]
org.eclipse.emf.ecp.view.categorization.model (1.3.0.20140610-1606) "Categorization Model" [Active]
org.eclipse.emf.ecp.view.categorization.model.edit (1.3.0.20140610-1606) "Categorization Edit Support" [Starting]
org.eclipse.emf.ecp.view.categorization.swt (1.3.0.20140610-1606) "Categorization SWT" [Starting]
org.eclipse.emf.ecp.view.context (1.3.0.20140610-1606) "View Model Context" [Starting]
org.eclipse.emf.ecp.view.context.locale (1.3.0.20140610-1606) "EMF Forms Locale View Service" [Starting]
org.eclipse.emf.ecp.view.core.swt (1.3.0.20140610-1606) "View Core SWT" [Starting]
org.eclipse.emf.ecp.view.custom.model (1.3.0.20140610-1606) "Custom Model" [Active]
org.eclipse.emf.ecp.view.custom.model.edit (1.3.0.20140610-1606) "Custom Edit Support" [Starting]
org.eclipse.emf.ecp.view.custom.ui.swt (1.3.0.20140610-1606) "Custom View SWT" [Starting]
org.eclipse.emf.ecp.view.group.model (1.3.0.20140610-1606) "Group Model" [Active]
org.eclipse.emf.ecp.view.group.model.edit (1.3.0.20140610-1606) "Group Edit Support" [Starting]
org.eclipse.emf.ecp.view.group.swt.embedded (1.3.0.20140610-1606) "AlignmentGroup SWT" [Resolved]
org.eclipse.emf.ecp.view.group.ui.swt (1.3.0.20140610-1606) "View Model Group UI SWT" [Starting]
org.eclipse.emf.ecp.view.horizontal.model (1.3.0.20140610-1606) "Horizontal View Model" [Active]
org.eclipse.emf.ecp.view.horizontal.model.edit (1.3.0.20140610-1606) "Horizontal Edit Support" [Starting]
org.eclipse.emf.ecp.view.horizontal.ui.swt (1.3.0.20140610-1606) "View Model Horizontal UI SWT" [Starting]
org.eclipse.emf.ecp.view.label.model (1.3.0.20140610-1606) "Label Model" [Active]
org.eclipse.emf.ecp.view.label.model.edit (1.3.0.20140610-1606) "Label Edit Support" [Starting]
org.eclipse.emf.ecp.view.label.ui.swt (1.3.0.20140610-1606) "View Model Label UI SWT" [Starting]
org.eclipse.emf.ecp.view.model (1.3.0.20140610-1606) "View Model" [Active]
org.eclipse.emf.ecp.view.model.common (1.3.0.20140610-1606) "Common View Model Classes" [Starting]
org.eclipse.emf.ecp.view.model.edit (1.3.0.20140610-1606) "View Edit Support" [Starting]
org.eclipse.emf.ecp.view.model.editor (1.3.0.20140610-1606) "View Editor" [Starting]
org.eclipse.emf.ecp.view.model.preview.common (1.3.0.20140610-1606) "View Model Preview Common" [Starting]
org.eclipse.emf.ecp.view.model.preview.e3 (1.3.0.20140610-1606) "Preview View" [Starting]
org.eclipse.emf.ecp.view.model.project.installer (1.3.0.20140610-1606) "New View Model Project Wizard" [Starting]
org.eclipse.emf.ecp.view.model.provider.generator (1.3.0.20140610-1606) "Generator" [Starting]
org.eclipse.emf.ecp.view.model.provider.xmi (1.3.0.20140610-1606) "XMI View Model Provider" [Starting]
org.eclipse.emf.ecp.view.rule (1.3.0.20140610-1606) "View Model Rule" [Starting]
org.eclipse.emf.ecp.view.rule.model (1.3.0.20140610-1606) "Rule Model Plugin" [Active]
org.eclipse.emf.ecp.view.rule.model.edit (1.3.0.20140610-1606) "Rule Model Edit Plugin" [Starting]
org.eclipse.emf.ecp.view.swt.layout (1.3.0.20140610-1606) "Default LayoutProvider" [Resolved]
org.eclipse.emf.ecp.view.table.columnservice (1.3.0.20140610-1606) "ECP View Table Column Service" [Resolved]
org.eclipse.emf.ecp.view.table.editor (1.3.0.20140610-1606) "ECP View Table Additional Features for Editor" [Starting]
org.eclipse.emf.ecp.view.table.migrate (1.3.0.20140610-1606) "Migrate" [Starting]
org.eclipse.emf.ecp.view.table.model (1.3.0.20140610-1606) "Table View Model" [Active]
org.eclipse.emf.ecp.view.table.model.edit (1.3.0.20140610-1606) "Table Edit Support" [Starting]
org.eclipse.emf.ecp.view.table.ui.swt (1.3.0.20140610-1606) "Table UI SWT" [Starting]
org.eclipse.emf.ecp.view.template.controls.swt (1.3.0.20140610-1606) "Template Controls SWT" [Starting]
org.eclipse.emf.ecp.view.template.model (1.3.0.20140610-1606) "Template Model" [Active]
org.eclipse.emf.ecp.view.template.model.edit (1.3.0.20140610-1606) "Template Edit Support" [Starting]
org.eclipse.emf.ecp.view.template.service (1.3.0.20140610-1606) "ViewTemplate Service" [Starting]
org.eclipse.emf.ecp.view.treemasterdetail.model (1.3.0.20140610-1606) "Vertical View Model" [Active]
org.eclipse.emf.ecp.view.treemasterdetail.model.edit (1.3.0.20140610-1606) "TreeMasterDetail Edit Support" [Starting]
org.eclipse.emf.ecp.view.treemasterdetail.ui.swt (1.3.0.20140610-1606) "View Model Vertical UI SWT" [Starting]
org.eclipse.emf.ecp.view.unset (1.3.0.20140610-1606) "View Model Unset Service" [Resolved]
org.eclipse.emf.ecp.view.util.swt (1.3.0.20140610-1606) "EMFForms SWT Util" [Starting]
org.eclipse.emf.ecp.view.validation (1.3.0.20140610-1606) "View Model Validation Service" [Starting]
org.eclipse.emf.ecp.view.vertical.model (1.3.0.20140610-1606) "Vertical View Model" [Active]
org.eclipse.emf.ecp.view.vertical.model.edit (1.3.0.20140610-1606) "Vertical Edit Support" [Starting]
org.eclipse.emf.ecp.view.vertical.ui.swt (1.3.0.20140610-1606) "View Model Vertical UI SWT" [Starting]
org.eclipse.emf.ecp.workspace.core (1.3.0.20140610-1606) "ECP Workspace Integration Core" [Starting]
org.eclipse.emf.ecp.workspace.ui (1.3.0.20140610-1606) "ECP Workspace Integration UI" [Starting]
org.eclipse.emf.edit (2.10.0.v20140519-0339) "EMF Edit" [Active]
org.eclipse.emf.edit.ui (2.10.0.v20140519-0339) "EMF Edit UI" [Active]
org.eclipse.emf.eef.branding (1.3.0.201311221533) "EEF" [Resolved]
org.eclipse.emf.eef.codegen.ecore (1.3.0.201311221533) "Acceleo Ecore Module Runtime Plug-in" [Starting]
org.eclipse.emf.eef.codegen.launcher (1.3.0.201311221533) "EEF
Re: Differences evaluating an OCL expression using Interactive OCL Console and xText Interactive Con [message #1479251 is a reply to message #1475688] Wed, 19 November 2014 09:26 Go to previous message
Ed Willink is currently offline Ed WillinkFriend
Messages: 7655
Registered: July 2009
Senior Member
Hi

Most of your plugins look plausible, although all from Luna SR0 and so
exclude the immediate updates such as OCL 5.0.1, Sirius 1.0.1.

I suspect that Sirius 1.0.1 is the most likely fix since Sirius 1.0.0
was seriously unuseable.

Since it works for me you need to find out which project is causing a
problem.

I recommend uninstalling Sirius, Ecore Tools, Epsilon, ATL, Acceleo,
QVTo, CDO, AspectJ, ... in that order till the problem goes away.
Uninstalling is not always effective, so for more certainty, start with
just OCL Example and Editors, verify that it works for you as it does
for me, then install extra projects one at a time to discover who's
causing the problem.

Regards

Ed Willink

On 16/11/2014 13:05, Toñi Reina Quintero wrote:
> Hi,
>
> I have attached an image of the versions I'm using. And these are the
> configuration details are in the .txt file I have included.
>
> If you needed it, I can share my Eclipse bundle.
>
> Thanks and regards,
> Toñi Reina
>
>
> El 16/11/2014 11:40, Ed Willink escribió:
>> Hi
>>
>> A good repo, although you haven't specified what version of OCL you are
>> using.
>>
>> It works fine for me with 5.1.0M3 on 4.5.0M3, 5.0.1, 5.0.0 on 4.4.0.
>>
>> If it doesn't work for you with one of these, please post your
>> Help->Installation Details->Configuration.
>>
>> Regards
>>
>> Ed Willink
>>
>>
>> On 15/11/2014 19:05, Toñi Reina Quintero wrote:
>>> Hi Ed,
>>>
>>> I have attached the metamodel and a model example with the problems I
>>> described in the previous post.
>>>
>>> Having as context Robb, in the GameOfThrones model, I executed the OCL
>>> expression parents->exists(gender=Gender::MALE) in both Consoles, the
>>> interactive one and the xText Interactive. In the OCL interactive, the
>>> expression is evaluated to true, which is the right result. However,
>>> when I execute the expresion in the OCL Interactive Console, the result
>>> is false.
>>>
>>> I have included also three invariants in the class Person. It seems the
>>> OCL validation is not right. I have attached a png file with the results
>>> of the validation.
>>>
>>> The Eclipse Version I'm using is:
>>>
>>> Eclipse Modeling Tools
>>> Version: Luna Release (4.4.0)
>>> Build id: 20140612-0600
>>>
>>> Thanks and regards,
>>> Toñi Reina
>>>
>>>
>>>
>>> El 11/11/2014 18:25, Ed Willink escribió:
>>>> Hi
>>>>
>>>> Using /org.eclipse.ocl.examples.xtext.tests/model/Fruit.ecore as a repo
>>>> and a model containing a Tree with a black and a red Apple.
>>>>
>>>> self.fruits->exists(color = Color::black)
>>>>
>>>> works exactly as I would expect.
>>>>
>>>> I suspect that you have some ambiguous names.
>>>>
>>>> Regards
>>>>
>>>> Ed Willink
>>>>
>>>>
>>>> On 11/11/2014 16:33, Ed Willink wrote:
>>>>> Hi
>>>>>
>>>>> Which Luna?
>>>>>
>>>>> I recently fixed a bug for UML EnumerationLiterals, which should not
>>>>> affect Ecore. There are quite a few JUnit tests so I'd be surprised if
>>>>> something so simple fails.
>>>>>
>>>>> Can you provide a repro?
>>>>>
>>>>> Luna has an OCL debugger so you can single step from the Xtext OCL
>>>>> Console.
>>>>>
>>>>> Regards
>>>>>
>>>>> Ed Willink
>>>>>
>>>>>
>>>>> On 11/11/2014 16:26, Toñi Reina Quintero wrote:
>>>>>> Hello,
>>>>>>
>>>>>> I'm using OCLinEcore to add some invariants to a metamodel. This
>>>>>> metamodel and constraint had been checked previously in Eclipse
>>>>>> Indigo.
>>>>>>
>>>>>> Currently I'm using Eclipse Luna. It was strange that when I
>>>>>> validated my models that were correct in Eclipse Indigo, I have found
>>>>>> some errors.
>>>>>>
>>>>>> I have been doing some investigation and I have found out that the
>>>>>> same OCL expression:
>>>>>>
>>>>>> parents->exists(gender=Gender::MALE)
>>>>>>
>>>>>> returns true when is evaluated in the Interactive OCL Console, but
>>>>>> returns false when is evaluated in the xText OCL Console.
>>>>>>
>>>>>> I suppose that the xText OCL Console has some bug, because, the
>>>>>> expression should return true. I suppose this bug is also included
>>>>>> when
>>>>>> I write the invariant in my metamodel with OCLInEcore.
>>>>>>
>>>>>> Am I right? Is it a bug?
>>>>>>
>>>>>>
>>>>>> Thanks,
>>>>>> Toñi Reina
>>>>>
>>>>
>>>
>>
>
Previous Topic:OCL Association Constraint
Next Topic:Solution: OCLinEcore editor fails to run on Luna SR1
Goto Forum:
  


Current Time: Tue Mar 19 08:59:52 GMT 2024

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

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

Back to the top