Package no.ugland.utransprod.service

Examples of no.ugland.utransprod.service.ProductAreaManager


   * Initierer liste med produktomr�de
   */
  private void initProductAreaList() {
    if (productAreaList.size() == 0) {
      productAreaList.clear();
      ProductAreaManager productAreaManager = (ProductAreaManager) ModelUtil
          .getBean("productAreaManager");
      List<ProductArea> productAreas = productAreaManager.findAll();
      if (productAreas != null) {
        productAreaList.addAll(productAreas);
      }
    }
  }
View Full Code Here

TOP

Related Classes of no.ugland.utransprod.service.ProductAreaManager

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.