Package com.ateam.webstore.ui.views

Examples of com.ateam.webstore.ui.views.ProductListView


   * Gets the home page view.
   * @return
   */
  public ProductListView getHomePageView() {
   
    ProductListView hp = new ProductListView(getMainView());
   
    hp.setProducts(getFeaturedProducts());
   
    ContentView cv = new ContentView(JSP_HOME, "Featured Products");
   
    hp.getContentViews().add(cv);

    return hp;
   
  }
View Full Code Here


      main = getMainAdminView();
    } else {
      main = getMainView();
    }
   
    ProductListView hp = new ProductListView(main);
   
    hp.setProducts(getAllProducts());
   
    String jsp = JSP_PRODUCT_LIST;
    if (admin) {
      jsp = JSP_ADMIN_PRODUCT_LIST;
    }
    ContentView cv = new ContentView(jsp, "All Products");
   
    hp.getContentViews().add(cv);

    return hp;
   

  }
View Full Code Here

TOP

Related Classes of com.ateam.webstore.ui.views.ProductListView

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.