Examples of Group

@author Robert "kebernet" Cooper
  • org.sbml.jsbml.ext.groups.Group
    @author Nicolas Rodriguez @author Clemens Wrzodek @since 1.0 @version $Rev: 1639 $
  • org.sbml.jsbml.ext.render.Group
    @author Eugen Netz @author Alexander Diamantikos @author Jakob Matthes @author Jan Rudolph @version $Rev: 1639 $ @since 1.0 @date 08.05.2012
  • org.springframework.data.neo4j.Group
  • org.springframework.data.neo4j.aspects.Group
  • org.springframework.data.neo4j.model.Group
  • org.structr.core.entity.Group
    @author amorgner
  • org.uberfire.backend.group.Group
  • org.voltdb.catalog.Group
  • org.wildfly.clustering.group.Group
    Represents a groups of nodes. @author Paul Ferraro
  • org.xith3d.scenegraph.Group
  • org.zkoss.zul.Group
    Adds the ability for single level grouping to the Grid.

    Available in ZK PE and EE.

    Event:

    1. onOpen is sent when this listgroup is opened or closed by user.

    Default {@link #getZclass}: z-group.

    Note: All the child of this component are automatically applied the group-cell CSS, if you don't want this CSS, you can invoke the {@link Label#setSclass(String)}after the child added. @author jumperchen @since 3.5.0

  • project.entities.institute.Group
  • projectatlast.group.Group
  • quickfix.Group
  • ro.isdc.wro.model.group.Group
    A group is an entity holding a list of resources.

    This class is thread safe. @author Alex Objelean @created Created on Oct 30, 2008

  • ru.org.linux.group.Group
  • simpleserver.config.xml.Group
  • sk.netmap.bo.Group
    BO group of servers @author Matej Zachar, $Date: 2006-04-23 20:42:47 +0000 (Ne, 23 apr 2006) $
  • storm.trident.graph.Group
  • tripleplay.ui.Group
    A grouping element that contains other elements and lays them out according to a layout policy.
  • ua.ck.geekhub.entity.Group
    Created by Vladimir on 3/11/14.
  • ucar.nc2.Group
    A Group is a logical collection of Variables. The Groups in a Dataset form a hierarchical tree, like directories on a disk. A Group has a name and optionally a set of Attributes. There is always at least one Group in a dataset, the root Group, whose name is the empty string.

    Immutable if setImmutable() was called. @author caron

  • xregistry.group.Group
    Represent a Group, group may have Users and child groups. The symantics of child groups are resolved by assuming of foo is in G1 and G1 is in G2, it is same as foo is in G1 (G1,G2 are groups and foo is a user). @author Srinath Perera(hperera@cs.indiana.edu)
  • zendeskapi.models.groups.Group
    @author jgroth

  • Examples of org.eclipse.persistence.internal.oxm.schema.model.Group

                    uri = getURIForPrefix(prefix);
                } else {
                    localName = groupName;
                    uri = targetNamespace;
                }
                Group globalGroup = rootSchema.getGroup(uri, localName);
                if (globalGroup != null) {
                    if (globalGroup.getChoice() != null) {
                        globalGroup.getChoice().setMaxOccurs(group.getMaxOccurs());
                        processChoice(targetNamespace, defaultNamespace, owningType, globalGroup.getChoice(), isMany);
                    } else if (globalGroup.getSequence() != null) {
                        globalGroup.getSequence().setMaxOccurs(group.getMaxOccurs());
                        processSequence(targetNamespace, defaultNamespace, owningType, globalGroup.getSequence(), isMany);
                    } else if (globalGroup.getAll() != null) {
                        globalGroup.getAll().setMaxOccurs(group.getMaxOccurs());
                        processAll(targetNamespace, defaultNamespace, owningType, globalGroup.getAll(), isMany);
                    }
                }
            }
        }
    View Full Code Here

    Examples of org.eclipse.swt.widgets.Group

            dialogChanged(e);
          }
         
        });
       
        _grpCreateContentStore = new Group(_container, SWT.SHADOW_NONE);
        GridData grpData = new GridData(GridData.FILL_HORIZONTAL);
        grpData.horizontalSpan = 3;
        _grpCreateContentStore.setLayoutData(grpData);
        _grpCreateContentStore.setText("Contentstore options");
       
    View Full Code Here

    Examples of org.elevenbits.westvleteren.model.item.Group

            }
        }

        public void testCreateAndGetAndRemoveGroup() throws Exception {
          log.warn("Creating a group");
          Group group = new Group("group", "description");
          dao.saveGroup(group);
          Integer id = group.getId();
          group = dao.getGroup(id);
          assertEquals(group.getName(), "group");
          assertEquals(group.getDescription(), "description");
          log.warn("Group created: " + group);
          dao.removeGroup(group);
          log.warn("Group removed");
          try {
            group = dao.getGroup(id);
    View Full Code Here

    Examples of org.encuestame.persistence.domain.security.Group

                            "groupBean",
                            getSecurityService().createGroup(unitGroupBean,
                                    getUserPrincipalUsername()));
                    setItemResponse(sucess);
                } else if ("update".equals(type)) {
                    final Group groupDomain = getSecurityService()
                            .getGroupbyIdandUser(groupId,
                                    getUserPrincipalUsername());// find by group Id
                                                                // and principal
                                                                // User.
                    if (groupDomain != null) {
    View Full Code Here

    Examples of org.exist.security.Group

        /* (non-Javadoc)
         * @see org.exist.security.User#addGroup(java.lang.String)
         */
        @Override
        public Group addGroup(final String name) {
            final Group role = new GroupAider(realmId, name)
            roles.put(name, role);
            return role;
        }
    View Full Code Here

    Examples of org.exolab.castor.xml.schema.Group

           ElementDecl schemaElement = new ElementDecl(schema, name);

           // start converting content of the element
           ComplexType complexType = schema.createComplexType();
           ContentType contentType = null;
           Group group = null; // auxiliary
           Iterator mixedChildrenIterator = null; // auxiliary
           String elementRef = null; // auxiliary
           ElementDecl elem = null// auxiliary

           if (dtdElement.isEmptyContent()) {

              // mixed="false"
              contentType = ContentType.elemOnly;
              //-- mixed="false"

           } else if (dtdElement.isAnyContent()) {

              // mixed="true"
              contentType = ContentType.mixed;
              //-- mixed="true"

              group = new Group();
              group.setOrder(Order.sequence);
              group.setMinOccurs(0);
              group.setMaxOccurs(-1);
              Wildcard any = new Wildcard(group);
              group.addWildcard(any);
              complexType.addGroup(group);

           } else if (dtdElement.isElemOnlyContent()) {

              // mixed="false"
              contentType = ContentType.elemOnly;
              //-- mixed="false"

              ContentParticle dtdContent = dtdElement.getContent();
              if (dtdContent == null) { // content is not specified
                 String err = "DTD to Schema converter: element \"" + dtdElement.getName();
                 err += "\" has no content.";
                 throw new DTDException(err);
              }

              Particle content = null;
              try {
                 content = convertContentParticle(dtdContent, schema);
              }
              catch (DTDException e) {
                 String err = "DTD to Schema converter: content of DTD element \"" + dtdElement.getName();
                 err += "\", represented by a Content Particle, is malformed.";
                 throw new DTDException(err);
              }

              if (content instanceof ElementDecl) {
                 group = new Group();
                 group.setOrder(Order.sequence);
                 group.addElementDecl((ElementDecl)content);
                 complexType.addGroup(group);
              } else {
                 complexType.addGroup((Group)content);
              }

           } else if (dtdElement.isMixedContent()) {

              // mixed="true"
              contentType = ContentType.mixed;
              //-- mixed="true"

              mixedChildrenIterator = dtdElement.getMixedContentChildren();
              if ((mixedChildrenIterator != null) && (mixedChildrenIterator.hasNext())) {
                 group = new Group();
                 group.setOrder(Order.choice);
                 group.setMinOccurs(0);
                 group.setMaxOccurs(-1);
                 while (mixedChildrenIterator.hasNext()) {
                    elementRef = (String)mixedChildrenIterator.next();
                    elem = new ElementDecl(schema);
                    elem.setReferenceName(elementRef);
                    group.addElementDecl(elem);
                 }
                 complexType.addGroup(group);
              }

           } else { // the type of the element has not been specified
    View Full Code Here

    Examples of org.exoplatform.services.organization.Group

          for (org.picketlink.idm.api.Group group : plGroups)
          {
             if (!group.equals(root))
             {
                Group g = convertGroup(group);

                // If membership of mapped types is forced then we need to exclude those that are not direct child
                if (orgService.getConfiguration().isForceMembershipOfMappedTypes())
                {
                   String id = g.getParentId();
                   if ((parent == null && id == null)
                       || (id != null && id.equals(parent.getId())))
                   {
                      exoGroups.add(g);
                      continue;
    View Full Code Here

    Examples of org.fao.geonet.domain.Group

            assertEquals("Expected to find 3 records", 3, records.size());
        }

        @Test
        public void testExecAsWithGroups() throws Exception {
            final Group group = _groupRepo.save(GroupRepositoryTest.newGroup(inc));
            User user1 = UserRepositoryTest.newUser(inc);
            user1.setProfile(Profile.Editor);
            user1 = _userRepo.save(user1);

            User user2 = UserRepositoryTest.newUser(inc);
    View Full Code Here

    Examples of org.fenixedu.bennu.core.groups.Group

        private static boolean isMemberOfDegreeCurricularPlansGroup(Person person) {
            Collection<DegreeCurricularPlan> degreeCurricularPlans = DegreeCurricularPlan.readNotEmptyDegreeCurricularPlans();

            for (DegreeCurricularPlan plan : degreeCurricularPlans) {
                Group curricularPlanMembersGroup = plan.getCurricularPlanMembersGroup();
                if (curricularPlanMembersGroup != null) {
                    return curricularPlanMembersGroup.isMember(person.getUser());
                }
            }

            return false;
        }
    View Full Code Here

    Examples of org.gatein.api.security.Group

            SiteKey siteKey = pageKey.getSite();
            switch (pageKey.getSite().getType()) {
                case PORTAL:
                    return new PageId(siteKey.getName(), pageKey.getName());
                case GROUP:
                    return new PageId(new Group(siteKey.getName()), pageKey.getName());
                case USER:
                    return new PageId(new User(siteKey.getName()), pageKey.getName());
                default:
                    throw new AssertionError();
            }
    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.