Package org.nextime.ion.framework.business

Examples of org.nextime.ion.framework.business.Section.up()


    try {
      Mapping.begin();
      Section s = Section.getInstance(request.getParameter("id"));
      if (request.getParameter("type").equals("up")) {
        s.up();
      } else {
        s.down();
      }
      Mapping.commit();
    } catch (MappingException e) {
View Full Code Here


     
      Section section = Section.getInstance(request.getParameter("id"));
      TreeControlNode node = ((TreeControl)(request.getSession().getAttribute("treeControlTest"))).findNode(request.getParameter("id"));
      // up or down ?
      if( request.getParameter("type").equals("up") ) {
        section.up();
        node.up();
      } else {
        section.down();
        node.down();
      }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.