4950515253545556575859
return b; } // not exported to interface to "hide" BeanC from interface introspection public BeanC getBeanC() { BeanC c = new BeanC(); c.setPropA("valueA"); c.setPropB("valueB"); c.setPropC("valueC"); return c; }
99100101102103104105106107108109
return result; } public ResultBean getResultBean() { ResultBean resultBean = new ResultBean(); resultBean.setResult1(listBeans()); resultBean.setResult2(listRootBeans()); return resultBean; }
949596979899100101102103104
8081828384858687888990
return result; } public RootBean getRootBean(String id) { RootBean rootBean = new RootBean(); rootBean.setId(id); rootBean.setChild(getBean(id)); return rootBean; }
7576777879808182838485