Вы должны передать список объектов, ваш объект будет выглядеть как
public class MyObject {
private Integer themes;
private Integer service;
public Integer getThemes() {
return this.themes;
}
public void setThemes(Integer themes) {
this.themes = themes;
}
public Integer getService() {
return this.service;
}
public void setService(Integer service) {
this.service = service;
}
}
Затем вы можете передать List<MyObject>
методу.
public void my_second_step(List<MyObject>) {
...
}
В функцииФайл измените определение следующим образом:
And my_second_step
| Themes | Service |
| one | two |
| three | four |
Надеюсь, это поможет.