Package org.olat.repository.controllers

Examples of org.olat.repository.controllers.ReferencableEntriesSearchController


   *      org.olat.core.gui.control.Event)
   */
  public void event(UserRequest ureq, Component source, Event event) {
    ICourse course = CourseFactory.loadCourse(ores);
    if (source == reattachButton) {
      searchController = new ReferencableEntriesSearchController(getWindowControl(), ureq, GlossaryResource.TYPE_NAME, getTranslator()
          .translate("command.linkresource"));
      searchController.addControllerListener(this);
      main.setContent(ComponentUtil.createTitledComponent("command.linkresource", null, getTranslator(), searchController.getInitialComponent()));
    } else if (source == importButton) {
      RepositoryEntry importedRepositoryEntry = doImport(importExport, course, false, ureq.getIdentity());
View Full Code Here

TOP

Related Classes of org.olat.repository.controllers.ReferencableEntriesSearchController

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.