Package org.pau.assetmanager.viewmodel.utils

Examples of org.pau.assetmanager.viewmodel.utils.BookSelection


    }
  }

  private void notifyGlobalUpdateBookSelection() {
    Map<String, Object> data = new HashMap<String, Object>();
    data.put("bookSelection", new BookSelection(selectedBook,
        bookSelectionType, selectedClient));
    BindUtils.postGlobalCommand(null, null, "updateBookSelection", data);
  }
View Full Code Here


    return availableBooks;
  }

  @DependsOn({"book", "concept"})
  public Collection<String> getAvailableConcepts() {
    Collection<String> coneptsInBook = ConceptsBusiness.getConceptsUsedInBook(new BookSelection(book, BookSelectionType.SINGLE_BOOK, client));
    availableConcepts =  new LinkedList<String>(Collections2.transform(coneptsInBook,
        new Function<String, String>() {
          @Override
          public String apply(String concept) {
            return concept;
View Full Code Here

TOP

Related Classes of org.pau.assetmanager.viewmodel.utils.BookSelection

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.