Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » EMF "Technology" (Ecore Tools, EMFatic, etc)  » [Teneo] Problem mapping Ecore package
[Teneo] Problem mapping Ecore package [message #75473] Wed, 14 March 2007 14:43 Go to next message
Didier Villevalois is currently offline Didier VillevaloisFriend
Messages: 86
Registered: July 2009
Member
Hi,

I have an EPackage that references the ECore package. I gave the
complete list of packages including the one of Ecore the setEPackages().
I load all these packages via the EPackage.Registry.INSTANCE registry. I
debugged and verified the list of packages is ok.

m_dataStore =
HbHelper.INSTANCE.createRegisterDataStore("CasualDataStore");

List<EPackage> ePackages = m_dataSetRL.getEPackages();
m_dataStore.setEPackages(
ePackages.toArray(new EPackage[ePackages.size()]));
m_dataStore.initialize();

However, i get the following exception indicating it can't map the
EStructuralFeature. It says common cause is a missing package. What
could be the other causes ?

Thanks for your help.
Didier.

org.eclipse.emf.teneo.annotations.StoreAnnotationsException: Mapping
Exception, no Annotated Class for EClass: EStructuralFeature a common
cause is that you did not register all EPackages in the DataStore/Helper
Class. When there are references between EClasses in different EPackages
then they need to be handled in one DataStore/Helper Class.

at
org.eclipse.emf.teneo.annotations.mapper.DefaultAnnotator.pr ocessClass(DefaultAnnotator.java:313)
at
org.eclipse.emf.teneo.hibernate.hbannotation.util.HibernateD efaultAnnotator.processClass(HibernateDefaultAnnotator.java: 145)
at
org.eclipse.emf.teneo.annotations.mapper.DefaultAnnotator.pr ocessPackage(DefaultAnnotator.java:280)
at
org.eclipse.emf.teneo.annotations.mapper.DefaultAnnotator.ma p(DefaultAnnotator.java:168)
at
org.eclipse.emf.teneo.annotations.mapper.PersistenceMappingB uilder.buildMapping(PersistenceMappingBuilder.java:173)
at
org.eclipse.emf.teneo.hibernate.HbDataStore.mapEPackages(HbD ataStore.java:399)
at
org.eclipse.emf.teneo.hibernate.HbDataStore.mapModel(HbDataS tore.java:387)
at
org.eclipse.emf.teneo.hibernate.HbDataStore.initialize(HbDat aStore.java:162)
at
org.beuz.casual.internal.datastore.DataStorePlugin.initializ eDataStore(DataStorePlugin.java:82)
at
org.beuz.casual.internal.datastore.DataStorePlugin.getDataSt ore(DataStorePlugin.java:70)
at org.beuz.casual.datastore.DataStore.getSessionFactory(DataSt ore.java:22)
at org.beuz.casual.ui.internal.CasualUIPlugin.start(CasualUIPlu gin.java:38)
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl$2 .run(BundleContextImpl.java:999)
at java.security.AccessController.doPrivileged(Native Method)
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tartActivator(BundleContextImpl.java:993)
at
org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tart(BundleContextImpl.java:974)
at
org.eclipse.osgi.framework.internal.core.BundleHost.startWor ker(BundleHost.java:346)
at
org.eclipse.osgi.framework.internal.core.AbstractBundle.star t(AbstractBundle.java:260)
at org.eclipse.osgi.framework.util.SecureAction.start(SecureAct ion.java:400)
at
org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter .postFindLocalClass(EclipseLazyStarter.java:111)
at
org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLoc alClass(ClasspathManager.java:417)
at
org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.fin dLocalClass(DefaultClassLoader.java:189)
at
org.eclipse.osgi.framework.internal.core.BundleLoader.findLo calClass(BundleLoader.java:340)
at
org.eclipse.osgi.framework.internal.core.BundleLoader.findCl assInternal(BundleLoader.java:408)
at
org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:369)
at
org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:357)
at
org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loa dClass(DefaultClassLoader.java:83)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
at
org.eclipse.osgi.framework.internal.core.BundleLoader.loadCl ass(BundleLoader.java:289)
at
org.eclipse.osgi.framework.internal.core.BundleHost.loadClas s(BundleHost.java:227)
at
org.eclipse.osgi.framework.internal.core.AbstractBundle.load Class(AbstractBundle.java:1269)
at
org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI .createExecutableExtension(RegistryStrategyOSGI.java:160)
at
org.eclipse.core.internal.registry.ExtensionRegistry.createE xecutableExtension(ExtensionRegistry.java:787)
at
org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:243)
at
org.eclipse.core.internal.registry.ConfigurationElementHandl e.createExecutableExtension(ConfigurationElementHandle.java: 51)
at
org.eclipse.equinox.internal.app.EclipseAppHandle.run(Eclips eAppHandle.java:142)
at
org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher .runApplication(EclipseAppLauncher.java:106)
at
org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher .start(EclipseAppLauncher.java:76)
at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:354)
at
org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:169)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce ssorImpl.java:39)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe thodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java: 476)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:416)
at org.eclipse.equinox.launcher.Main.run(Main.java:1124)
at org.eclipse.equinox.launcher.Main.main(Main.java:1099)
Re: [Teneo] Problem mapping Ecore package [message #75542 is a reply to message #75473] Wed, 14 March 2007 15:07 Go to previous messageGo to next message
Didier Villevalois is currently offline Didier VillevaloisFriend
Messages: 86
Registered: July 2009
Member
This is a multi-part message in MIME format.
--------------050703070909090702010907
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

BTW i join the log file.

--------------050703070909090702010907
Content-Type: text/x-log;
name="teneo.log"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="teneo.log"

0 [main] INFO org.eclipse.emf.teneo.hibernate.HbHelper - Creating emf data store and registering it under name: CasualDataStore
479 [main] DEBUG org.eclipse.emf.teneo.hibernate.HbDataStore - Initializing protocol/extension for hibernate
485 [main] INFO org.eclipse.emf.teneo.hibernate.HbHelper - Returning created emf data store, initialize this newly created data store!
44191 [main] DEBUG org.eclipse.emf.teneo.hibernate.HbDataStore - >>>>> Creating HB Configuration
0 [main] INFO org.hibernate.cfg.Environment - Hibernate 3.2.2
7 [main] INFO org.hibernate.cfg.Environment - loaded properties from resource hibernate.properties: {hibernate.connection.username=root, hibernate.connection.password=****, hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialect, hibernate.connection.url=jdbc:mysql://127.0.0.1:3306/casual, hibernate.bytecode.use_reflection_optimizer=false, hibernate.connection.driver_class=com.mysql.jdbc.Driver}
9 [main] INFO org.hibernate.cfg.Environment - Bytecode provider name : cglib
15 [main] INFO org.hibernate.cfg.Environment - using JDK 1.4 java.sql.Timestamp handling
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - Properties of PersistenceOptions:
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.ignore_eannotations: false
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.always_version: true
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.optimistic_locking: true
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.naming.id_feature_as_primary_key: true
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.naming.default_id_column: e_id
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.default_cache_strategy: NONE
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.naming.version_column: e_version
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.fetch_containment_eagerly: false
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.join_table_for_non_contained_associations: false
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.naming.java_class_entity_names: false
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.naming.max_sql_name_length: -1
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.naming.strategy: lowercase
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.naming.default_id_feature: e_id
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.disable_econtainer: false
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.proxy_strategy: none
44518 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.default_temporal: TIMESTAMP
44518 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.join_table_naming_strategy: ejb3
44518 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.cascade_all_on_containment: true
44518 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.set_entity_automatically: true
44518 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.hibernate_mapping_file: false
44518 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.runtime.update_schema: true
44518 [main] DEBUG org.eclipse.emf.teneo.hibernate.HbDataStore - Generating mapping file from in-mem ecore
44557 [main] DEBUG org.eclipse.emf.teneo.annotations.mapper.PersistenceMappingB uilder - Creating pamodel for the following epackages
44557 [main] DEBUG org.eclipse.emf.teneo.annotations.mapper.PersistenceMappingB uilder - directory
44801 [main] DEBUG org.eclipse.emf.teneo.annotations.mapper.PersistenceMappingB uilder - data
44811 [main] DEBUG org.eclipse.emf.teneo.annotations.mapper.PersistenceMappingB uilder - ecore
44828 [main] DEBUG org.eclipse.emf.teneo.annotations.mapper.PersistenceMappingB uilder - change
44833 [main] DEBUG org.eclipse.emf.teneo.annotations.mapper.PersistenceMappingB uilder - Create base pannotated model
44833 [main] DEBUG org.eclipse.emf.teneo.annotations.mapper.PersistenceMappingB uilder - Deprecated eannotations with http://annotations.elver.org or http://ejb.elver.org are ignored.
44833 [main] DEBUG org.eclipse.emf.teneo.annotations.mapper.PersistenceMappingB uilder - Parse annotations
44841 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing package directory
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing directory
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Directory
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Directory
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing organizations
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing persons
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Organization
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Organization
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing name
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing designations
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing qualifier
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing address
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing webSite
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing contacts
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing email
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing phones
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing fax
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing OrganizationQualifier
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass OrganizationQualifier
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Company
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Company
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Theater
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Theater
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing occasional
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing type
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Contact
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Contact
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing organization
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing role
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing person
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing address
44845 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44845 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing email
44845 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44845 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing phones
44845 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing fax
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Person
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Person
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing genus
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing firstname
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing lastname
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing address
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing email
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44847 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing phones
44847 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44847 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing fax
44847 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44847 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Address
44847 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44847 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Address
44847 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing lines
44848 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44848 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing postalCode
44848 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44848 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing town
44848 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing country
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing TheaterType
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Role
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Genus
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing PhoneNumber
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing package data
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing data
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Management
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Management
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing sources
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing operations
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Source
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Source
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing uri
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Operation
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Operation
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing reports
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing OperationReport
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass OperationReport
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing target
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing feature
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing code
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing data
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ImportOperation
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass ImportOperation
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing source
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing date
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ManagedObject
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass ManagedObject
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing identifications
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing history
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing handCheckDate
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Identification
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Identification
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing source
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing value
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ChangeSet
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass ChangeSet
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing kind
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing comment
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing relatedTo
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing description
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing commitDate
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ChangeSetKind
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing package ecore
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ecore
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EAttribute
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EAttribute
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing iD
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eAttributeType
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EAnnotation
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EAnnotation
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing source
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing details
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eModelElement
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing contents
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing references
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EClass
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EClass
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing abstract
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing interface
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eSuperTypes
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eOperations
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eAllAttributes
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eAllReferences
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eReferences
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eAttributes
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eAllContainments
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eAllOperations
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eAllStructuralFeatures
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eAllSuperTypes
44856 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44857 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eIDAttribute
44857 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44858 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eStructuralFeatures
44858 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44858 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eGenericSuperTypes
44858 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44858 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eAllGenericSuperTypes
44858 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44858 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EClassifier
44858 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44859 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EClassifier
44859 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing instanceClassName
44859 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44859 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing instanceClass
44859 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44859 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing defaultValue
44859 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44859 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing instanceTypeName
44859 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ePackage
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eTypeParameters
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EDataType
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EDataType
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing serializable
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EEnum
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EEnum
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eLiterals
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EEnumLiteral
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EEnumLiteral
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing value
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing instance
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing literal
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eEnum
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EFactory
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EFactory
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ePackage
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44862 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EModelElement
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EModelElement
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eAnnotations
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ENamedElement
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass ENamedElement
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing name
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EObject
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EObject
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EOperation
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EOperation
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eContainingClass
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eTypeParameters
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eParameters
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eExceptions
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eGenericExceptions
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EPackage
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EPackage
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing nsURI
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing nsPrefix
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eFactoryInstance
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eClassifiers
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eSubpackages
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eSuperPackage
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EParameter
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EParameter
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eOperation
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EReference
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EReference
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing containment
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing container
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing resolveProxies
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eOpposite
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eReferenceType
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eKeys
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EStructuralFeature
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EStructuralFeature
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing changeable
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing volatile
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing transient
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing defaultValueLiteral
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing defaultValue
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing unsettable
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing derived
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eContainingClass
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ETypedElement
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass ETypedElement
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ordered
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing unique
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing lowerBound
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing upperBound
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing many
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing required
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eType
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eGenericType
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EStringToStringMapEntry
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EStringToStringMapEntry
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing key
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing value
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EGenericType
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EGenericType
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eUpperBound
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eTypeArguments
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eRawType
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eLowerBound
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eTypeParameter
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eClassifier
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ETypeParameter
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass ETypeParameter
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eBounds
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EBigDecimal
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EBigInteger
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EBoolean
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EBooleanObject
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EByte
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EByteArray
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EByteObject
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EChar
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ECharacterObject
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EDate
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EDiagnosticChain
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EDouble
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EDoubleObject
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EEList
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EEnumerator
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EFeatureMap
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EFeatureMapEntry
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EFloat
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EFloatObject
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EInt
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EIntegerObject
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EJavaClass
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EJavaObject
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ELong
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ELongObject
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EMap
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EResource
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EResourceSet
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EShort
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EShortObject
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EString
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ETreeIterator
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing package change
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing change
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ChangeDescription
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass ChangeDescription
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing objectChanges
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing objectsToDetach
44871 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44871 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing objectsToAttach
44872 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
448
Re: [Teneo] Problem mapping Ecore package [message #75558 is a reply to message #75473] Wed, 14 March 2007 15:14 Go to previous messageGo to next message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Hi Didier,
Are you using the latest builds of last week? This should be solved in those releases.

gr. Martin

Ptitjes wrote:
> Hi,
>
> I have an EPackage that references the ECore package. I gave the
> complete list of packages including the one of Ecore the setEPackages().
> I load all these packages via the EPackage.Registry.INSTANCE registry. I
> debugged and verified the list of packages is ok.
>
> m_dataStore =
> HbHelper.INSTANCE.createRegisterDataStore("CasualDataStore");
>
> List<EPackage> ePackages = m_dataSetRL.getEPackages();
> m_dataStore.setEPackages(
> ePackages.toArray(new EPackage[ePackages.size()]));
> m_dataStore.initialize();
>
> However, i get the following exception indicating it can't map the
> EStructuralFeature. It says common cause is a missing package. What
> could be the other causes ?
>
> Thanks for your help.
> Didier.
>
> org.eclipse.emf.teneo.annotations.StoreAnnotationsException: Mapping
> Exception, no Annotated Class for EClass: EStructuralFeature a common
> cause is that you did not register all EPackages in the DataStore/Helper
> Class. When there are references between EClasses in different EPackages
> then they need to be handled in one DataStore/Helper Class.
>
> at
> org.eclipse.emf.teneo.annotations.mapper.DefaultAnnotator.pr ocessClass(DefaultAnnotator.java:313)
> at
> org.eclipse.emf.teneo.hibernate.hbannotation.util.HibernateD efaultAnnotator.processClass(HibernateDefaultAnnotator.java: 145)
> at
> org.eclipse.emf.teneo.annotations.mapper.DefaultAnnotator.pr ocessPackage(DefaultAnnotator.java:280)
> at
> org.eclipse.emf.teneo.annotations.mapper.DefaultAnnotator.ma p(DefaultAnnotator.java:168)
> at
> org.eclipse.emf.teneo.annotations.mapper.PersistenceMappingB uilder.buildMapping(PersistenceMappingBuilder.java:173)
> at
> org.eclipse.emf.teneo.hibernate.HbDataStore.mapEPackages(HbD ataStore.java:399)
> at
> org.eclipse.emf.teneo.hibernate.HbDataStore.mapModel(HbDataS tore.java:387)
> at
> org.eclipse.emf.teneo.hibernate.HbDataStore.initialize(HbDat aStore.java:162)
> at
> org.beuz.casual.internal.datastore.DataStorePlugin.initializ eDataStore(DataStorePlugin.java:82)
> at
> org.beuz.casual.internal.datastore.DataStorePlugin.getDataSt ore(DataStorePlugin.java:70)
> at org.beuz.casual.datastore.DataStore.getSessionFactory(DataSt ore.java:22)
> at org.beuz.casual.ui.internal.CasualUIPlugin.start(CasualUIPlu gin.java:38)
> at
> org.eclipse.osgi.framework.internal.core.BundleContextImpl$2 .run(BundleContextImpl.java:999)
> at java.security.AccessController.doPrivileged(Native Method)
> at
> org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tartActivator(BundleContextImpl.java:993)
> at
> org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tart(BundleContextImpl.java:974)
> at
> org.eclipse.osgi.framework.internal.core.BundleHost.startWor ker(BundleHost.java:346)
> at
> org.eclipse.osgi.framework.internal.core.AbstractBundle.star t(AbstractBundle.java:260)
> at org.eclipse.osgi.framework.util.SecureAction.start(SecureAct ion.java:400)
> at
> org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter .postFindLocalClass(EclipseLazyStarter.java:111)
> at
> org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLoc alClass(ClasspathManager.java:417)
> at
> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.fin dLocalClass(DefaultClassLoader.java:189)
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findLo calClass(BundleLoader.java:340)
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl assInternal(BundleLoader.java:408)
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:369)
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:357)
> at
> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loa dClass(DefaultClassLoader.java:83)
> at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.loadCl ass(BundleLoader.java:289)
> at
> org.eclipse.osgi.framework.internal.core.BundleHost.loadClas s(BundleHost.java:227)
> at
> org.eclipse.osgi.framework.internal.core.AbstractBundle.load Class(AbstractBundle.java:1269)
> at
> org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI .createExecutableExtension(RegistryStrategyOSGI.java:160)
> at
> org.eclipse.core.internal.registry.ExtensionRegistry.createE xecutableExtension(ExtensionRegistry.java:787)
> at
> org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:243)
> at
> org.eclipse.core.internal.registry.ConfigurationElementHandl e.createExecutableExtension(ConfigurationElementHandle.java: 51)
> at
> org.eclipse.equinox.internal.app.EclipseAppHandle.run(Eclips eAppHandle.java:142)
> at
> org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher .runApplication(EclipseAppLauncher.java:106)
> at
> org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher .start(EclipseAppLauncher.java:76)
> at
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:354)
> at
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:169)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce ssorImpl.java:39)
> at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe thodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:585)
> at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java: 476)
> at org.eclipse.equinox.launcher.Main.basicRun(Main.java:416)
> at org.eclipse.equinox.launcher.Main.run(Main.java:1124)
> at org.eclipse.equinox.launcher.Main.main(Main.java:1099)


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: [Teneo] Problem mapping Ecore package [message #75626 is a reply to message #75558] Wed, 14 March 2007 15:39 Go to previous message
Didier Villevalois is currently offline Didier VillevaloisFriend
Messages: 86
Registered: July 2009
Member
In fact, moving from I200703061425 to I200703081604 solves the problem!

I did not yet go through the full story, but Teneo looks very great!
Thank you!
Didier.

Martin Taal a écrit :
> Hi Didier,
> Are you using the latest builds of last week? This should be solved in
> those releases.
>
> gr. Martin
Re: [Teneo] Problem mapping Ecore package [message #603631 is a reply to message #75473] Wed, 14 March 2007 15:07 Go to previous message
Didier Villevalois is currently offline Didier VillevaloisFriend
Messages: 86
Registered: July 2009
Member
This is a multi-part message in MIME format.
--------------050703070909090702010907
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

BTW i join the log file.

--------------050703070909090702010907
Content-Type: text/x-log;
name="teneo.log"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="teneo.log"

0 [main] INFO org.eclipse.emf.teneo.hibernate.HbHelper - Creating emf data store and registering it under name: CasualDataStore
479 [main] DEBUG org.eclipse.emf.teneo.hibernate.HbDataStore - Initializing protocol/extension for hibernate
485 [main] INFO org.eclipse.emf.teneo.hibernate.HbHelper - Returning created emf data store, initialize this newly created data store!
44191 [main] DEBUG org.eclipse.emf.teneo.hibernate.HbDataStore - >>>>> Creating HB Configuration
0 [main] INFO org.hibernate.cfg.Environment - Hibernate 3.2.2
7 [main] INFO org.hibernate.cfg.Environment - loaded properties from resource hibernate.properties: {hibernate.connection.username=root, hibernate.connection.password=****, hibernate.dialect=org.hibernate.dialect.MySQLInnoDBDialect, hibernate.connection.url=jdbc:mysql://127.0.0.1:3306/casual, hibernate.bytecode.use_reflection_optimizer=false, hibernate.connection.driver_class=com.mysql.jdbc.Driver}
9 [main] INFO org.hibernate.cfg.Environment - Bytecode provider name : cglib
15 [main] INFO org.hibernate.cfg.Environment - using JDK 1.4 java.sql.Timestamp handling
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - Properties of PersistenceOptions:
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.ignore_eannotations: false
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.always_version: true
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.optimistic_locking: true
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.naming.id_feature_as_primary_key: true
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.naming.default_id_column: e_id
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.default_cache_strategy: NONE
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.naming.version_column: e_version
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.fetch_containment_eagerly: false
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.join_table_for_non_contained_associations: false
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.naming.java_class_entity_names: false
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.naming.max_sql_name_length: -1
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.naming.strategy: lowercase
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.naming.default_id_feature: e_id
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.disable_econtainer: false
44517 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.proxy_strategy: none
44518 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.default_temporal: TIMESTAMP
44518 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.join_table_naming_strategy: ejb3
44518 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.cascade_all_on_containment: true
44518 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.set_entity_automatically: true
44518 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.mapping.hibernate_mapping_file: false
44518 [main] DEBUG org.eclipse.emf.teneo.PersistenceOptions - teneo.runtime.update_schema: true
44518 [main] DEBUG org.eclipse.emf.teneo.hibernate.HbDataStore - Generating mapping file from in-mem ecore
44557 [main] DEBUG org.eclipse.emf.teneo.annotations.mapper.PersistenceMappingB uilder - Creating pamodel for the following epackages
44557 [main] DEBUG org.eclipse.emf.teneo.annotations.mapper.PersistenceMappingB uilder - directory
44801 [main] DEBUG org.eclipse.emf.teneo.annotations.mapper.PersistenceMappingB uilder - data
44811 [main] DEBUG org.eclipse.emf.teneo.annotations.mapper.PersistenceMappingB uilder - ecore
44828 [main] DEBUG org.eclipse.emf.teneo.annotations.mapper.PersistenceMappingB uilder - change
44833 [main] DEBUG org.eclipse.emf.teneo.annotations.mapper.PersistenceMappingB uilder - Create base pannotated model
44833 [main] DEBUG org.eclipse.emf.teneo.annotations.mapper.PersistenceMappingB uilder - Deprecated eannotations with http://annotations.elver.org or http://ejb.elver.org are ignored.
44833 [main] DEBUG org.eclipse.emf.teneo.annotations.mapper.PersistenceMappingB uilder - Parse annotations
44841 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing package directory
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing directory
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Directory
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Directory
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing organizations
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing persons
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Organization
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44842 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Organization
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing name
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing designations
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing qualifier
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing address
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing webSite
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing contacts
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing email
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing phones
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing fax
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing OrganizationQualifier
44843 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass OrganizationQualifier
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Company
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Company
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Theater
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Theater
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing occasional
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing type
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Contact
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Contact
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing organization
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing role
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing person
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44844 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing address
44845 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44845 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing email
44845 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44845 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing phones
44845 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing fax
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Person
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Person
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing genus
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing firstname
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing lastname
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing address
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing email
44846 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44847 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing phones
44847 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44847 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing fax
44847 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44847 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Address
44847 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44847 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Address
44847 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing lines
44848 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44848 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing postalCode
44848 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44848 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing town
44848 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing country
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing TheaterType
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Role
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Genus
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing PhoneNumber
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing package data
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing data
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Management
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Management
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing sources
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing operations
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44849 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Source
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Source
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing uri
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Operation
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Operation
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing reports
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing OperationReport
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass OperationReport
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing target
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing feature
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing code
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44850 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing data
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ImportOperation
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass ImportOperation
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing source
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing date
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ManagedObject
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass ManagedObject
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing identifications
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing history
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing handCheckDate
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing Identification
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass Identification
44851 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing source
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing value
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ChangeSet
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass ChangeSet
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing kind
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing comment
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing relatedTo
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing description
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing commitDate
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ChangeSetKind
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing package ecore
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ecore
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EAttribute
44852 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EAttribute
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing iD
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eAttributeType
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EAnnotation
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EAnnotation
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing source
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing details
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eModelElement
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing contents
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing references
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EClass
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EClass
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing abstract
44853 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing interface
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eSuperTypes
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eOperations
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eAllAttributes
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eAllReferences
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eReferences
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eAttributes
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eAllContainments
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eAllOperations
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eAllStructuralFeatures
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44854 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eAllSuperTypes
44856 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44857 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eIDAttribute
44857 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44858 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eStructuralFeatures
44858 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44858 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eGenericSuperTypes
44858 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44858 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eAllGenericSuperTypes
44858 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44858 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EClassifier
44858 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44859 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EClassifier
44859 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing instanceClassName
44859 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44859 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing instanceClass
44859 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44859 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing defaultValue
44859 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44859 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing instanceTypeName
44859 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ePackage
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eTypeParameters
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EDataType
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EDataType
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing serializable
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EEnum
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EEnum
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eLiterals
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EEnumLiteral
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EEnumLiteral
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing value
44860 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing instance
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing literal
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eEnum
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EFactory
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EFactory
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ePackage
44861 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44862 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EModelElement
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EModelElement
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eAnnotations
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ENamedElement
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass ENamedElement
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing name
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EObject
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EObject
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EOperation
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EOperation
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eContainingClass
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eTypeParameters
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eParameters
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eExceptions
44863 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eGenericExceptions
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EPackage
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EPackage
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing nsURI
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing nsPrefix
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eFactoryInstance
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eClassifiers
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eSubpackages
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eSuperPackage
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EParameter
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EParameter
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eOperation
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EReference
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44864 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EReference
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing containment
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing container
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing resolveProxies
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eOpposite
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eReferenceType
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eKeys
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EStructuralFeature
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EStructuralFeature
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing changeable
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing volatile
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing transient
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing defaultValueLiteral
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing defaultValue
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing unsettable
44865 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing derived
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eContainingClass
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ETypedElement
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass ETypedElement
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ordered
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing unique
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing lowerBound
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing upperBound
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing many
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing required
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eType
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eGenericType
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EStringToStringMapEntry
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EStringToStringMapEntry
44866 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing key
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing value
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EGenericType
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass EGenericType
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eUpperBound
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eTypeArguments
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eRawType
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eLowerBound
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eTypeParameter
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eClassifier
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ETypeParameter
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass ETypeParameter
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eBounds
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44867 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EBigDecimal
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EBigInteger
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EBoolean
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EBooleanObject
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EByte
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EByteArray
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EByteObject
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EChar
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ECharacterObject
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EDate
44868 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EDiagnosticChain
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EDouble
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EDoubleObject
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EEList
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EEnumerator
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EFeatureMap
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EFeatureMapEntry
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EFloat
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EFloatObject
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EInt
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EIntegerObject
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EJavaClass
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EJavaObject
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ELong
44869 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ELongObject
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EMap
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EResource
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EResourceSet
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EShort
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EShortObject
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing EString
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ETreeIterator
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing package change
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing change
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing ChangeDescription
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing eclass ChangeDescription
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing objectChanges
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44870 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing objectsToDetach
44871 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
44871 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Processing objectsToAttach
44872 [main] DEBUG org.eclipse.emf.teneo.annotations.parser.EAnnotationParserIm porter - Number of parsed typename annotations 0
448
Re: [Teneo] Problem mapping Ecore package [message #603636 is a reply to message #75473] Wed, 14 March 2007 15:14 Go to previous message
Martin Taal is currently offline Martin TaalFriend
Messages: 5468
Registered: July 2009
Senior Member
Hi Didier,
Are you using the latest builds of last week? This should be solved in those releases.

gr. Martin

Ptitjes wrote:
> Hi,
>
> I have an EPackage that references the ECore package. I gave the
> complete list of packages including the one of Ecore the setEPackages().
> I load all these packages via the EPackage.Registry.INSTANCE registry. I
> debugged and verified the list of packages is ok.
>
> m_dataStore =
> HbHelper.INSTANCE.createRegisterDataStore("CasualDataStore");
>
> List<EPackage> ePackages = m_dataSetRL.getEPackages();
> m_dataStore.setEPackages(
> ePackages.toArray(new EPackage[ePackages.size()]));
> m_dataStore.initialize();
>
> However, i get the following exception indicating it can't map the
> EStructuralFeature. It says common cause is a missing package. What
> could be the other causes ?
>
> Thanks for your help.
> Didier.
>
> org.eclipse.emf.teneo.annotations.StoreAnnotationsException: Mapping
> Exception, no Annotated Class for EClass: EStructuralFeature a common
> cause is that you did not register all EPackages in the DataStore/Helper
> Class. When there are references between EClasses in different EPackages
> then they need to be handled in one DataStore/Helper Class.
>
> at
> org.eclipse.emf.teneo.annotations.mapper.DefaultAnnotator.pr ocessClass(DefaultAnnotator.java:313)
> at
> org.eclipse.emf.teneo.hibernate.hbannotation.util.HibernateD efaultAnnotator.processClass(HibernateDefaultAnnotator.java: 145)
> at
> org.eclipse.emf.teneo.annotations.mapper.DefaultAnnotator.pr ocessPackage(DefaultAnnotator.java:280)
> at
> org.eclipse.emf.teneo.annotations.mapper.DefaultAnnotator.ma p(DefaultAnnotator.java:168)
> at
> org.eclipse.emf.teneo.annotations.mapper.PersistenceMappingB uilder.buildMapping(PersistenceMappingBuilder.java:173)
> at
> org.eclipse.emf.teneo.hibernate.HbDataStore.mapEPackages(HbD ataStore.java:399)
> at
> org.eclipse.emf.teneo.hibernate.HbDataStore.mapModel(HbDataS tore.java:387)
> at
> org.eclipse.emf.teneo.hibernate.HbDataStore.initialize(HbDat aStore.java:162)
> at
> org.beuz.casual.internal.datastore.DataStorePlugin.initializ eDataStore(DataStorePlugin.java:82)
> at
> org.beuz.casual.internal.datastore.DataStorePlugin.getDataSt ore(DataStorePlugin.java:70)
> at org.beuz.casual.datastore.DataStore.getSessionFactory(DataSt ore.java:22)
> at org.beuz.casual.ui.internal.CasualUIPlugin.start(CasualUIPlu gin.java:38)
> at
> org.eclipse.osgi.framework.internal.core.BundleContextImpl$2 .run(BundleContextImpl.java:999)
> at java.security.AccessController.doPrivileged(Native Method)
> at
> org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tartActivator(BundleContextImpl.java:993)
> at
> org.eclipse.osgi.framework.internal.core.BundleContextImpl.s tart(BundleContextImpl.java:974)
> at
> org.eclipse.osgi.framework.internal.core.BundleHost.startWor ker(BundleHost.java:346)
> at
> org.eclipse.osgi.framework.internal.core.AbstractBundle.star t(AbstractBundle.java:260)
> at org.eclipse.osgi.framework.util.SecureAction.start(SecureAct ion.java:400)
> at
> org.eclipse.core.runtime.internal.adaptor.EclipseLazyStarter .postFindLocalClass(EclipseLazyStarter.java:111)
> at
> org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLoc alClass(ClasspathManager.java:417)
> at
> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.fin dLocalClass(DefaultClassLoader.java:189)
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findLo calClass(BundleLoader.java:340)
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl assInternal(BundleLoader.java:408)
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:369)
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.findCl ass(BundleLoader.java:357)
> at
> org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loa dClass(DefaultClassLoader.java:83)
> at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
> at
> org.eclipse.osgi.framework.internal.core.BundleLoader.loadCl ass(BundleLoader.java:289)
> at
> org.eclipse.osgi.framework.internal.core.BundleHost.loadClas s(BundleHost.java:227)
> at
> org.eclipse.osgi.framework.internal.core.AbstractBundle.load Class(AbstractBundle.java:1269)
> at
> org.eclipse.core.internal.registry.osgi.RegistryStrategyOSGI .createExecutableExtension(RegistryStrategyOSGI.java:160)
> at
> org.eclipse.core.internal.registry.ExtensionRegistry.createE xecutableExtension(ExtensionRegistry.java:787)
> at
> org.eclipse.core.internal.registry.ConfigurationElement.crea teExecutableExtension(ConfigurationElement.java:243)
> at
> org.eclipse.core.internal.registry.ConfigurationElementHandl e.createExecutableExtension(ConfigurationElementHandle.java: 51)
> at
> org.eclipse.equinox.internal.app.EclipseAppHandle.run(Eclips eAppHandle.java:142)
> at
> org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher .runApplication(EclipseAppLauncher.java:106)
> at
> org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher .start(EclipseAppLauncher.java:76)
> at
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:354)
> at
> org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseS tarter.java:169)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce ssorImpl.java:39)
> at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe thodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:585)
> at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java: 476)
> at org.eclipse.equinox.launcher.Main.basicRun(Main.java:416)
> at org.eclipse.equinox.launcher.Main.run(Main.java:1124)
> at org.eclipse.equinox.launcher.Main.main(Main.java:1099)


--

With Regards, Martin Taal

Springsite/Elver.org
Office: Hardwareweg 4, 3821 BV Amersfoort
Postal: Nassaulaan 7, 3941 EC Doorn
The Netherlands
Tel: +31 (0)84 420 2397
Fax: +31 (0)84 225 9307
Mail: mtaal@springsite.com - mtaal@elver.org
Web: www.springsite.com - www.elver.org
Re: [Teneo] Problem mapping Ecore package [message #603652 is a reply to message #75558] Wed, 14 March 2007 15:39 Go to previous message
Didier Villevalois is currently offline Didier VillevaloisFriend
Messages: 86
Registered: July 2009
Member
In fact, moving from I200703061425 to I200703081604 solves the problem!

I did not yet go through the full story, but Teneo looks very great!
Thank you!
Didier.

Martin Taal a écrit :
> Hi Didier,
> Are you using the latest builds of last week? This should be solved in
> those releases.
>
> gr. Martin
Previous Topic:JET2 - declaring custom tags
Next Topic:Query by Class question and potential problem
Goto Forum:
  


Current Time: Fri Apr 19 22:28:23 GMT 2024

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

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

Back to the top