public Object eat(Fruit[] fruit)
This resolver will NOT resolve method entry points such as - public Object eat(Fruit[] fruit, Banana banana)
If you require to mix an array type with complex types you need to specify an inbound transformer that return a multi-dimensional array of arguments i.e. new Object[]{new Fruit[]{new Apple(), new Orange()}, new Banana()};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|