Mx Model Reflection Error

1
The error i have here is in the mx model reflection module's class metaObjectBuilder.java. The error is in this code for(IMendixObject language : Core.retrieveXPathQuery(context, "//" + Language.entityName)) this.languageCodes.add(Language.initialize(language).getCode(context)); The error states "The method initialize(IContext, IMendixIdentifier) in the type Language is not applicable for the arguments (IMendixObject)"
asked
2 answers
3

Probably this line will fix the issue:

this.languageCodes.add(Language.initialize(context, language).getCode());
answered
1

The current mx model reflection can not be used in 3.0, it is not compatible. You have to wait untill a new version gets out.

answered