Package org.projectforge.reporting.impl

Examples of org.projectforge.reporting.impl.BuchungssatzImpl


      final List<Buchungssatz> list = new ArrayList<Buchungssatz>();
      @SuppressWarnings("unchecked")
      final
      Collection<BuchungssatzDO> col = (Collection<BuchungssatzDO>)beanCollection;
      for (final BuchungssatzDO buchungssatzDO : col) {
        final Buchungssatz satz = new BuchungssatzImpl(buchungssatzDO);
        list.add(satz);
      }
      this.beanCollection = list;
    } else {
      this.beanCollection = beanCollection;
View Full Code Here

TOP

Related Classes of org.projectforge.reporting.impl.BuchungssatzImpl

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.