new AggregatedFeatureGenerator( //<co id="co.opennlp.name.createfeat"/>
new WindowFeatureGenerator(
new TokenFeatureGenerator(), 2, 2), //<co id="co.opennlp.name.tokenfeat"/>
new WindowFeatureGenerator(
new TokenClassFeatureGenerator(), 2, 2), //<co id="co.opennlp.name.tokenclassfeat"/>
new PreviousMapFeatureGenerator() //<co id="co.opennlp.name.prevfeat"/>
);
/*<calloutlist>
<callout arearefs="co.opennlp.name.createfeat"><para>Creates an aggregated feature generator containing the 3 generators defined below.</para></callout>
<callout arearefs="co.opennlp.name.tokenfeat"><para>Creates a feature generator corresponding to the tokens in a 5-token widow (2 to the left, and 2 to the right).</para></callout>
<callout arearefs="co.opennlp.name.tokenclassfeat"><para>Creates a feature generator corresponding to the token classes of the tokens in a 5-token widow (2 to the left, and 2 to the right).</para></callout>