List of usage examples for org.eclipse.jdt.internal.compiler.lookup CompilationUnitScope checkAndSetImports
void checkAndSetImports()
From source file:org.eclipse.objectteams.otdt.internal.core.compiler.lookup.OTClassScope.java
License:Open Source License
/** Need to initialize the role file imports, too. */ @Override/*from w ww. ja v a2 s . c o m*/ protected void checkRoleFileImports() { super.checkRoleFileImports(); CompilationUnitScope importScope = this.roleUnitImportScope; if (importScope != null && importScope.imports == null) importScope.checkAndSetImports(); }