Examples of OrderCostModel


Examples of no.ugland.utransprod.gui.model.OrderCostModel

   * @param aOrderCost
   */
  public OrderCostView(OrderCostViewHandler handler, OrderCost aOrderCost) {
    viewHandler = handler;
    if (aOrderCost != null) {
      presentationModel = new PresentationModel(new OrderCostModel(
          aOrderCost));
    } else {
      presentationModel = new PresentationModel(new OrderCostModel(
          new OrderCost()));
    }
  }
View Full Code Here

Examples of no.ugland.utransprod.gui.model.OrderCostModel

   * Henter kostnad som vises i vindu
   *
   * @return kostnad
   */
  public OrderCost getOrderCost() {
    OrderCostModel orderCostModel = viewHandler
        .getOrderCostModel(presentationModel);
    if (orderCostModel != null) {
      return orderCostModel.getObject();
    }
    return null;
  }
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.