Examples of showWaitingList()


Examples of org.olat.group.properties.BusinessGroupPropertyManager.showWaitingList()

    }
    //export properties
    BusinessGroupPropertyManager bgPropertyManager = new BusinessGroupPropertyManager(group);
    boolean showOwners = bgPropertyManager.showOwners();
    boolean showParticipants = bgPropertyManager.showPartips();
    boolean showWaitingList = bgPropertyManager.showWaitingList();
   
    newGroup.addAttribute(EXPORT_KEY_SHOW_OWNERS, showOwners);   
    newGroup.addAttribute(EXPORT_KEY_SHOW_PARTICIPANTS, showParticipants);   
    newGroup.addAttribute(EXPORT_KEY_SHOW_WAITING_LIST, showWaitingList);   
  }
View Full Code Here

Examples of org.olat.group.properties.BusinessGroupPropertyManager.showWaitingList()

    // the booleans
    dmsForm = new DisplayMemberSwitchForm("dmsForm", getTranslator(), hasOwners, hasPartips, hasWaitingList);
    // set if the checkboxes are checked or not.
    if (hasOwners) dmsForm.setShowOwnersChecked(bgpm.showOwners());
    if (hasPartips) dmsForm.setShowPartipsChecked(bgpm.showPartips());
    if (hasWaitingList) dmsForm.setShowWaitingListChecked(bgpm.showWaitingList());
    bgpm = null;
    dmsForm.addListener(this);
    tmp.put("displayMembers", dmsForm);
    boolean enableTablePreferences = flags.isEnabled(BGConfigFlags.ADMIN_SEE_ALL_USER_DATA);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.