Package org.olat.ims.qti.editor

Examples of org.olat.ims.qti.editor.ItemNodeTabbedFormController


  public TabbedPane createEditTabbedPane(UserRequest ureq, WindowControl wControl, Translator trnsltr,
      QTIEditorMainController editorMainController) {
    if (myTabbedPane == null) {
      try {
        myTabbedPane = new TabbedPane("tabbedPane", ureq.getLocale());
        TabbableController tabbCntrllr = new ItemNodeTabbedFormController(item, qtiPackage, ureq, wControl, trnsltr, editorMainController
            .isRestrictedEdit());
        tabbCntrllr.addTabs(myTabbedPane);
        tabbCntrllr.addControllerListener(editorMainController);
      } catch (Exception e) {
        myTabbedPane = null;
        log.warn("Cannot create editor for the current item - item.getIdent(): " + item.getIdent());
      }
    }
View Full Code Here

TOP

Related Classes of org.olat.ims.qti.editor.ItemNodeTabbedFormController

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.