Package org.araneaframework.example.main.web.person

Examples of org.araneaframework.example.main.web.person.PersonListWidget


    putViewData("person", person);
  }
 
  public void handleEventChoosePerson(String eventParameter) throws Exception {
    log.debug("Event 'choosePerson' received!");
    getFlowCtx().start(new PersonListWidget(false), null, new FlowContext.Handler() {
      public void onFinish(Object returnValue) throws Exception {
        Long id = (Long) returnValue;
        person = (PersonMO) getGeneralDAO().getById(PersonMO.class, id);
        log.debug("Person with id of " + id + " set to this contract");
      }
View Full Code Here

TOP

Related Classes of org.araneaframework.example.main.web.person.PersonListWidget

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.