Exemple #1
0
 @Override
 public void setOutput(final String name, final Object value) {
   final CommandModuleItem<?> item = info.getOutput(name);
   ClassUtils.setValue(item.getField(), command, value);
 }
Exemple #2
0
 @Override
 public Object getOutput(final String name) {
   final CommandModuleItem<?> item = info.getOutput(name);
   return ClassUtils.getValue(item.getField(), command);
 }