Package su.mauser.view

Examples of su.mauser.view.ProductionView


      }
      if (film.get("production") != null)
      {
        DBObject production = (DBObject) film.get("production");
        List<ProductionView> p = new ArrayList<ProductionView>();
        ProductionView pv = new ProductionView();
        pv.setCountry(production.get("country").toString());
        pv.setStudio(production.get("studio").toString());
        p.add(pv);
        filmsView.setProduction(p);
        logger.debug("Film production: {}", filmsView.getProduction());
      }
      if (film.get("parts") != null)
View Full Code Here

TOP

Related Classes of su.mauser.view.ProductionView

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.