1 package org.jellyfish; 2 3 import org.apache.commons.beanutils.Converter; 4 5 public class ConverterMock implements Converter { 6 7 public boolean convertCalled; 8 public Class convertType; 9 public Object convertValue; 10 public Object convertReturn; 11 public Object convert(Class type, Object value) { 12 convertCalled = true; 13 convertType = type; 14 convertValue = value; 15 return convertReturn; 16 } 17 18 }

This page was automatically generated by Maven