Package org.olat.repository.controllers

Examples of org.olat.repository.controllers.RepositoryEditDescriptionController


      } else if (command.startsWith(CATCMD_EDIT)) {
        String s = command.substring(CATCMD_EDIT.length());
        if (s.startsWith(CATENTRY_LEAF)) {
          int pos = Integer.parseInt(s.substring(CATENTRY_LEAF.length()));
          linkMarkedToBeEdited = (CatalogEntry) childCe.get(pos);
          repositoryEditDescriptionController = new RepositoryEditDescriptionController(ureq, getWindowControl(), linkMarkedToBeEdited.getRepositoryEntry(), false);
          repositoryEditDescriptionController.addControllerListener(this);
          // open form in dialog
          removeAsListenerAndDispose(cmc);
          cmc = new CloseableModalController(getWindowControl(), "close", repositoryEditDescriptionController.getInitialComponent(), true, translate("tools.edit.catalog.category"));
          listenTo(cmc);
View Full Code Here

TOP

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

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.