null, // notContains - classname should not contain this string
false); // annotations - true if classnames are annotations
commands = new HashMap<String, Set<Command>>(listClasses.size());
if (listClasses.isEmpty()) {
log.fatalError("!!!!!Uh-oh, didn't find any action handlers!!!!!");
throw new JMeterError("No action handlers found - check JMeterHome and libraries");
}
for (String strClassName : listClasses) {
Class<?> commandClass = Class.forName(strClassName);
Command command = (Command) commandClass.newInstance();
for (String commandName : command.getActionNames()) {