Xtext global auto-generation
问题 In Xtext, how does one auto-generate a single file containing information from multiple model files. Consider the following simple Xtext grammar. grammar org.example.people.People with org.eclipse.xtext.common.Terminals generate people "http://www.example.org/people/People" People: people+=Person*; Person: 'person' name=ID ';'; In the launched workspace I create a project with two files, friends.people // friends person Alice; person Bob; and enemies.people // enemies person Malice; person