Added multi jvm test script and removed J2SE-1.5 compile errors.

This commit is contained in:
Willem Cazander 2013-08-09 00:51:53 +02:00
parent 6f2815491b
commit 0ac4faa613
7 changed files with 133 additions and 29 deletions

View file

@ -79,10 +79,10 @@ public class ApiDocNodeWriterBean implements ApiDocNodeWriter {
if (ammo.nodeBodyOrder()!=-1) {
methodWriter.setNodeBodyOrder(ammo.nodeBodyOrder());
}
if (!ammo.contentGroup().isEmpty()) {
if (ammo.contentGroup().length()>0) {
methodWriter.setContentGroup(ammo.contentGroup());
}
if (!ammo.contentGroupType().isEmpty()) {
if (ammo.contentGroupType().length()>0) {
methodWriter.setContentGroupType(ammo.contentGroupType());
}
doc.addNodeBodyWriter(methodWriter);