Package org.projectforge.user

Examples of org.projectforge.user.GroupDO


      public void populateItem(final Item<ICellPopulator<ProjektDO>> item, final String componentId, final IModel<ProjektDO> rowModel)
      {
        final ProjektDO projektDO = rowModel.getObject();
        String groupName = "";
        if (projektDO.getProjektManagerGroupId() != null) {
          final GroupDO group = userGroupCache.getGroup(projektDO.getProjektManagerGroupId());
          if (group != null) {
            groupName = group.getName();
          }
        }
        final Label label = new Label(componentId, groupName);
        item.add(label);
        cellItemListener.populateItem(item, componentId, rowModel);
View Full Code Here

TOP

Related Classes of org.projectforge.user.GroupDO

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.