Community
Participate
Working Groups
The Domainmodel example introduces a specialized IQualifiedNameProvider: ============================================================================== public class DomainmodelQualifiedNameProvider extends DefaultDeclarativeQualifiedNameProvider { @Inject private IQualifiedNameConverter converter; QualifiedName qualifiedName(JvmGenericType type) { return converter.toQualifiedName(type.getQualifiedName()); } } ============================================================================== However, this kind of customization is required always when using Jvm types. Forgetting to customize this is a common point of failure. Thus it would be better when this class is added to Xtype (as class XtypeQualifiedNameProvider) and automatically bound to the runtime module of a language if this derives from Xtype.
*** This bug has been marked as a duplicate of bug 350812 ***