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 net.sf.cb2java.types.Group

            element = new Copybook(name, values);
        }
       
        private void createGroup()
        {
            element = new Group(name, level, occurs);
        }
    View Full Code Here

    Examples of net.sf.mpxj.Group

             // short 4 = show summary tasks
             // short int at byte 6 for number of clauses        
             //Integer groupUniqueID = Integer.valueOf(MPPUtility.getInt(groupVarData, 0));
             boolean showSummaryTasks = (MPPUtility.getShort(groupVarData, 4) != 0);

             Group group = new Group(groupID, groupName, showSummaryTasks);
             file.addGroup(group);

             int clauseCount = MPPUtility.getShort(groupVarData, 6);
             int offset = 8;

             for (int clauseIndex = 0; clauseIndex < clauseCount; clauseIndex++)
             {
                if (offset + 47 > groupVarData.length)
                {
                   break;
                }

                GroupClause clause = new GroupClause();
                group.addGroupClause(clause);

                int fieldID = MPPUtility.getInt(groupVarData, offset);
                FieldType type = FieldTypeUtility.getInstance(fieldID);
                clause.setField(type);
    View Full Code Here

    Examples of net.solosky.maplefetion.bean.Group

          //发送信息收到回复
          SipcReceipt receipt = this.dialog.getMessageFactory()
          .createDefaultReceipt(notify.getFrom(), Integer.toString(notify.getCallID()), notify.getSequence());
          this.dialog.process(receipt);
         
          Group  group  = this.context.getFetionStore().getGroup(notify.getFrom());
         
          Member member = this.context.getFetionStore().getGroupMember(group, notify.getHeader("SO").getValue());
          String body   = notify.getBody()!=null?notify.getBody().toSendString():""//防止产生NULL错误
          GroupDialog groupDialog = this.context.getDialogFactory().findGroupDialog(group);
         
          if(group!=null && member!=null && groupDialog!=null&&this.context.getNotifyEventListener()!=null) {
            this.tryFireNotifyEvent(new GroupMessageEvent(group, member, this.parseMessage(notify), groupDialog));
           
            logger.debug("Received a group message:[ Group="+group.getName()+", from="+member.getDisplayName()+", msg="+body );
          }
        }
    View Full Code Here

    Examples of net.webpasswordsafe.common.model.Group

                user.setActiveFlag(enabledCheckBox.getValue());
                user.updateAuthnPasswordValue(Utils.safeString(password1TextBox.getValue()));
                user.removeGroups();
                for (GroupData groupData : toGroupStore.getModels())
                {
                    Group group = (Group)groupData.get(Constants.GROUP);
                    user.addGroup(group);
                }
               
                final AsyncCallback<Void> callback = new AsyncCallback<Void>()
                {
    View Full Code Here

    Examples of nl.giantit.minecraft.database.query.Group

        return this.where(t, field, value, Group.ValueType.EQUALS);
      }
     
      @Override
      public Group where(Group.Type t, String field, String value, Group.ValueType vT) {
        Group g = new MySQLGroup(this.db);
        g.setType(t);
        g.add(field, value, vT);
       
        return this.where(g);
      }
    View Full Code Here

    Examples of org.activiti.engine.identity.Group

      }

      @Test
      public void testFindGroupsByUserAndType() {
        IdentityService identityService = activitiRule.getIdentityService();
        Group sales = identityService.newGroup("sales");
        sales.setType("hierarchy");
        identityService.saveGroup(sales);

        Group development = identityService.newGroup("development");
        development.setType("hierarchy");
        identityService.saveGroup(development);

        Group admin = identityService.newGroup("admin");
        admin.setType("security-role");
        identityService.saveGroup(admin);

        Group user = identityService.newGroup("user");
        user.setType("security-role");
        identityService.saveGroup(user);

        User johndoe = identityService.newUser("johndoe");
        identityService.saveUser(johndoe);
    View Full Code Here

    Examples of org.andidev.applicationname.entity.Group

            User user = new User("root", "");
            return userService.create(user);
        }

        private Group createRootGroup() {
            Group group = new Group("root");
            group.getGroupRoles().addAll(Role.getAllRolesExceptAnonymous());
            return groupService.create(group);
        }
    View Full Code Here

    Examples of org.anjocaido.groupmanager.data.Group

                owh = groupManager.getWorldsHolder().getWorldData(worldName);
            }
            if (owh == null) {
                return;
            }
            Group group = owh.getGroup(groupName);
            if (group == null) {
                return;
            }
            group.getVariables().addVar(node, value);
        }
    View Full Code Here

    Examples of org.apache.beehive.wsm.axis.security.Group

                {
                    for ( String userName : group.getUserArray() )
                    {
                        if ( userName.equals( user.getName() ) )
                        {
                            Group memoryGroup = userList.getGroup( group.getName() );
                            if ( memoryGroup != null )
                            {
                                if (logger.isDebugEnabled()) {
                                    logger.debug("USER : " + memoryUser.getName() + " in GROUP : " + memoryGroup.getName() );
                                }

                                // User and Group hold references to each other
                                memoryGroup.addUser( memoryUser );
                                memoryUser.addGroup( memoryGroup );

                                // user inherits this group's roles.
                                for ( Role memoryRole : memoryGroup.getRoles() )
                                {
                                    memoryUser.addRole ( memoryRole );
                                }

                            }
    View Full Code Here

    Examples of org.apache.bval.jsr.groups.Group

            final Collection<Annotation> annotations = prop.getFeature(JsrFeatures.Property.ANNOTATIONS_TO_PROCESS);
            if (annotations != null) {
                for (final Annotation a : annotations) {
                    if (ConvertGroup.List.class.isInstance(a)) {
                        for (final ConvertGroup convertGroup : ConvertGroup.List.class.cast(a).value()) {
                            edesc.addGroupConversion(new GroupConversionDescriptorImpl(new Group(convertGroup.from()), new Group(convertGroup.to())));
                        }
                    }

                    if (ConvertGroup.class.isInstance(a)) {
                        final ConvertGroup convertGroup = ConvertGroup.class.cast(a);
                        edesc.addGroupConversion(new GroupConversionDescriptorImpl(new Group(convertGroup.from()), new Group(convertGroup.to())));
                    }
                }
                annotations.clear();
            }
    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.