Community
Participate
Working Groups
Build Identifier: M20110909-1335 In my code I need access to the importedNamespacePrefix field of org.eclipse.xtext.scoping.impl.ImportNormalizer It would be nice if a getter method would be created. More information here: http://www.eclipse.org/forums/index.php/m/735845/ Workaround: Field field = ImportNormalizer.class.getDeclaredField("importedNamespacePrefix"); field.setAccessible(true); QualifiedName qn = (QualifiedName) field.get(instance); field.setAccessible(false); Reproducible: Always
Installed software: Xtext SDK 2.0.1.v201108020636
We need this for Xtend, too. See NestedTypeAwareImportNormalizer
Pushed to master.
Closing all bugs that were set to RESOLVED before Neon.0