Package com.apps.ubc.cc.model

Examples of com.apps.ubc.cc.model.SectionModel


      } else if (type.equals(SECTION_TYPE)) {
        String dID = req.getParameter("did");
        String cID = req.getParameter("cid");
        String sID = req.getParameter("sid");
        SectionModel sm = getSectionModel(dID, cID, sID);
       
        HttpSession s = req.getSession();
        s.setAttribute("section", sm);
        try {
          req.getRequestDispatcher("/details.jsp").forward(req, resp);
View Full Code Here


    String cdf = "No";
    if(sio.isCdf())
      cdf = "Yes";
    String end = sio.getEnd();
    String location = sio.getLocation();
    SectionModel sm = new SectionModel( dept,  course,  section,
         activity,  term,  day,  location,
         start,  end,  instructor,  building,
         room,  cdf,  drop,  withdraw,
         title,  lat,  lng);
    return sm;
View Full Code Here

TOP

Related Classes of com.apps.ubc.cc.model.SectionModel

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.