Examples of ProductListView


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

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

      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
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.