Package su.mauser.view

Examples of su.mauser.view.UnitView


        {
          List<DBObject> units = (List<DBObject>) parts.get("units");
          List<UnitView> unitViews = new ArrayList<UnitView>();
          for (DBObject unit : units)
          {
            UnitView unitView = new UnitView();
            unitView.setOnum(((Number) unit.get("onum")).intValue());
            unitView.setName(unit.get("name").toString());
            unitViews.add(unitView);
          }
          partsView.setUnits(unitViews);
        }
        filmsView.setParts(partsView);
View Full Code Here

TOP

Related Classes of su.mauser.view.UnitView

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.