use of com.lowagie.text.ListItem in project drools by kiegroup.
the class EndPage method createContents.
public static List createContents(java.util.List<DrlRuleParser> rules) {
List index = new List(true);
for (DrlRuleParser drlRuleData : rules) {
Chunk chunk = new Chunk(drlRuleData.getName());
// chunk.setLocalGoto( item.getName() );
ListItem listItem = new ListItem(chunk);
index.add(listItem);
}
return index;
}
Aggregations