145146147148149150151152153154
And and3 = new And(); and3.addOption(getOptionById("classpath")); And and4 = new And(); and4.getGroupings().add(and3); and4.addOption(getOptionById("alg")); Or or1 = new Or(); or1.getGroupings().add(and4); or1.getGroupings().add(and2); return or1; }
156157158159160161162163
/** * Generate the grouping for the 'execute' command. */ private Grouping createExecuteGrouping() { Or or1 = new Or(); return or1; }