Package org.campware.dream.om

Examples of org.campware.dream.om.DcontractItem


       
      while(paramKeys.hasMoreElements()) {
          String paramName = paramKeys.nextElement().toString();
          if(paramName.startsWith("costtypeid")) { 
              String suffix=paramName.substring(10, paramName.length());
              DcontractItem entryItem= new DcontractItem();

              entryItem.setCostTypeId(pp.getInt("costtypeid" + suffix));
        entryItem.setCostFunction(pp.getInt("costfunction" + suffix));
              BigDecimal itmCostAmount= pp.getBigDecimal("costamount" + suffix);
              entryItem.setCostAmount(itmCostAmount);

              entry.addDcontractItem(entryItem);
            }
        }
View Full Code Here


       
      while(paramKeys.hasMoreElements()) {
          String paramName = paramKeys.nextElement().toString();
      if(paramName.startsWith("costtypeid")) { 
        String suffix=paramName.substring(10, paramName.length());
        DcontractItem entryItem= new DcontractItem();

        entryItem.setCostTypeId(pp.getInt("costtypeid" + suffix));
        entryItem.setCostFunction(pp.getInt("costfunction" + suffix));
        BigDecimal itmCostAmount= pp.getBigDecimal("costamount" + suffix);
        entryItem.setCostAmount(itmCostAmount);

        entry.addDcontractItem(entryItem);
      }
        }
View Full Code Here

TOP

Related Classes of org.campware.dream.om.DcontractItem

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.