Package org.internna.ossmoney.model.support

Examples of org.internna.ossmoney.model.support.InvestmentStatus


      for (AccountTransaction transaction : transactions) {
        if (transaction.getInvestment() != null) {
          InvestmentTransaction investmentTransaction = transaction.getInvestment();
          if (investmentTransaction != null) {
            Investment investment = investmentTransaction.getInvestment();
            InvestmentStatus status = investments.get(investment);
            if (status == null) {
              status = new InvestmentStatus(this, investment);
              investments.put(investment, status);
            }
            status.add(transaction);
          }
        }
      }
      return investments.values();
    }
View Full Code Here

TOP

Related Classes of org.internna.ossmoney.model.support.InvestmentStatus

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.