[idea] auto builder - module-scoped clean builds, triggered by Facet and module changes (fixes https://bugs.eclipse.org/bugs/show_bug.cgi?id=472588)

This commit is contained in:
Sven Efftinge 2015-07-14 15:49:50 +02:00
parent 3df3684547
commit b016be4db0
2 changed files with 8 additions and 0 deletions

View file

@ -62,4 +62,8 @@ import java.util.Set
generated2source.get(generated)
}
def Iterable<URI> getAllGenerated() {
generated2source.keySet
}
}

View file

@ -72,6 +72,10 @@ import org.eclipse.xtext.util.internal.EmfAdaptable
return chunk2resourceDescriptions.put(name, descriptions)
}
def ResourceDescriptionsData removeContainer(String name) {
return chunk2resourceDescriptions.remove(name)
}
override protected getSelectables() {
return chunk2resourceDescriptions.values
}