Examples of AuftragFilter


Examples of org.projectforge.fibu.AuftragFilter

  }

  @Override
  protected List<AuftragsPositionDO> getChoices(final String input)
  {
    final AuftragFilter filter = new AuftragFilter();
    filter.setSearchString(input);
    final List<AuftragDO> list = auftragDao.getList(filter);
    Collections.sort(list, new Comparator<AuftragDO>() {
      public int compare(final AuftragDO o1, final AuftragDO o2)
      {
        return (o1.getNummer().compareTo(o2.getNummer()));
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.