Package org.projectforge.book

Examples of org.projectforge.book.BookFilter


      }
    }) {
      @Override
      protected List<BookDO> getChoices(final String input)
      {
        final BookFilter filter = new BookFilter();
        filter.setSearchString(input);
        filter.setSearchFields("title", "authors");
        final List<BookDO> list = bookDao.getList(filter);
        return list;
      }

      @Override
View Full Code Here

TOP

Related Classes of org.projectforge.book.BookFilter

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.