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 fr.ippon.tatami.domain.Group

        @ResponseBody
        @Timed
        public Group getGroup(@PathVariable("groupId") String groupId) {
            User currentUser = authenticationService.getCurrentUser();
            String domain = DomainUtil.getDomainFromLogin(currentUser.getLogin());
            Group publicGroup = groupService.getGroupById(domain, groupId);
            if (publicGroup != null && publicGroup.isPublicGroup()) {
                Group result = getGroupFromUser(currentUser, groupId);
                Group groupClone = (Group) publicGroup.clone();
                if (result != null) {
                    groupClone.setMember(true);
                }
                if (isGroupManagedByCurrentUser(publicGroup)) {
                    groupClone.setAdministrator(true);
                }
                return groupClone;
            } else {
                Group result = getGroupFromUser(currentUser, groupId);
                Group groupClone = null;
                if (result == null) {
                    log.info("Permission denied! User {} tried to access group ID = {} ", currentUser.getLogin(), groupId);
                    return null;
                } else {
                    groupClone = (Group) result.clone();
                    groupClone.setMember(true);
                    if (isGroupManagedByCurrentUser(publicGroup)) {
                        groupClone.setAdministrator(true);
                    }
                }
                return groupClone;
            }
        }
    View Full Code Here

    Examples of games.stendhal.server.core.rp.group.Group

          player.sendPrivateText(targetPlayer.getName() + " has a closed mind, and is seeking solitude from all but close friends");
          return;
        }

        // check if the target player is already in a group
        Group group = SingletonRepository.getGroupManager().getGroup(targetPlayer.getName());
        if (group != null) {
          player.sendPrivateText(NotificationType.ERROR, targetPlayer.getName() + " is already in a group.");
          return;
        }

        // get group, create it, if it does not exist
        SingletonRepository.getGroupManager().createGroup(player.getName());
        group = SingletonRepository.getGroupManager().getGroup(player.getName());

        // check leader
        if (!group.hasLeader(player.getName())) {
          player.sendPrivateText(NotificationType.ERROR, "Only the group leader may invite people.");
          return;
        }

        // check if there is space left in the group
        if (group.isFull()) {
          player.sendPrivateText(NotificationType.ERROR, "Your group is already full.");
          return;
        }

        // invite
        group.invite(player, targetPlayer);
        player.sendPrivateText("You have invited " + targetPlayer.getName() + " to join your group.");
      }
    View Full Code Here

    Examples of gotnames.dm.Group

          return rawStringUtf8("Invalid token");
       
        final String name = p.name();
        if (name != null) {
          // create the group
          final Group g = new KTrans<Group>(pm) {
            @Override protected Group call() {
              Group g = new Group();
              g.setName(name);
             
              pm.makePersistent(g);
             
              return g;
            }
          }.go();
         
          // create first admin user
          String authToken = new KTrans<String>(pm) {
            @Override protected String call() {
              User u = User.newUser(g.getKey());
             
              u.setEmail(email);
              u.setFirstName(Utils.notNull(p.firstName(), "First name is required"));
              u.setLastName(Utils.notNull(p.lastName(), "Last name is required"));
              u.setGender(Utils.notNull(p.gender(), "Gender is required"));
    View Full Code Here

    Examples of gov.nasa.arc.mct.components.collection.Group

            // Otherwise, check for a match on owner
            // Finally, check if there is Group ownership of this component
            User user = PlatformAccess.getPlatform().getCurrentUser();
            String owner = component.getOwner();
            if (!owner.equals("*") && !owner.equals(user.getUserId()) && !RoleAccess.hasRole(user, owner)) {
                Group group = component.getCapability(Group.class); // Check for group ownership
                String groupId = group != null ? group.getDiscipline() : null;
                if (groupId == null || !groupId.equals(PlatformAccess.getPlatform().getCurrentUser().getDisciplineId())) {
                    return new ExecutionResult(context, false, "User does not own this component.");
                }
            }
               
    View Full Code Here

    Examples of gov.nist.scap.xccdf.document.Group

      private boolean isSelected(SelectableItem item) {
        boolean retval;
        if (selectedMap.containsKey(item)) {
          retval = selectedMap.get(item);
        } else {
          Group parent = item.getParent();

          boolean parentSelected;
          if (parent != null) {
            // We can assume that the parent has been visited already
            parentSelected = selectedMap.get(parent);
    View Full Code Here

    Examples of hibernate.Group

      }
     
      @Test
      public void test01() {
       
        Group group = new Group();
        group.setGroupTitle("hello");
        group.setGroupDesc("World");
        GroupInfoJson infoJson = GroupFactory.createGroupInfoJson(group);
       
        if (infoJson.getTitle().equals(group.getGroupTitle())){
         
        }
       
        else{
          Assert.fail("Failed because titles do not match");
        }
       
        if (infoJson.getDescription().equals(group.getGroupDesc())){
         
        }
       
        else{
          Assert.fail("Failed because desc do not match");
    View Full Code Here

    Examples of info.galleria.domain.Group

      }
     
      @Test
      public void testCreateGroup() throws Exception
      {
        Group group  = new Group(TEST_GROUP_ID);
       
        //Execute
        repository.create(group);
       
        //Verify
        em.flush();
        em.clear();
        Group actualGroup = em.find(Group.class, TEST_GROUP_ID);
        assertEquals(group, actualGroup);
      }
    View Full Code Here

    Examples of io.fathom.cloud.compute.api.aws.ec2.model.Group

        protected List<Group> buildGroupsXml(List<SecurityGroupData> groups) {
            List<Group> xml = Lists.newArrayList();

            for (SecurityGroupData group : groups) {
                Group groupXml = new Group();
                xml.add(groupXml);

                groupXml.groupId = toEc2SecurityGroupId(group.getId());
                groupXml.groupName = group.getName();
            }
    View Full Code Here

    Examples of io.fathom.cloud.identity.api.os.model.v3.Group

            GroupList response = new GroupList();
            response.groups = Lists.newArrayList();

            for (GroupData data : identityService.listGroups(user)) {
                Group domain = toModel(data);
                response.groups.add(domain);
            }

            return response;
        }
    View Full Code Here

    Examples of j2dbench.Group

        static String transDescriptions[] = {
            null, "Opaque", "Bitmask", "Translucent",
        };

        public static void init() {
            imageroot = new Group(graphicsroot, "imaging",
                                  "Imaging Benchmarks");
            imageroot.setTabbed();
            imgsrcroot = new Group.EnableSet(imageroot, "src",
                                             "Image Rendering Sources");
            imgsrcroot.setBordered(true);
            imgtestroot = new Group(imageroot, "tests",
                                    "Image Rendering Tests");
            imgtestroot.setBordered(true);

            new OffScreen();

            if (hasGraphics2D) {
                if (hasCompatImage) {
                    new CompatImg(Transparency.OPAQUE);
                    new CompatImg(Transparency.BITMASK);
                    new CompatImg(Transparency.TRANSLUCENT);
                }

                if (hasVolatileImage) {
                    new VolatileImg();
                }

                bufimgsrcroot =
                    new Group.EnableSet(imgsrcroot, "bufimg",
                                        "BufferedImage Rendering Sources");
                new BufImg(BufferedImage.TYPE_INT_RGB);
                new BufImg(BufferedImage.TYPE_INT_ARGB);
                new BufImg(BufferedImage.TYPE_BYTE_GRAY);
                new BmByteIndexBufImg();

                imageOpRoot = new Group(imageroot, "imageops",
                                        "Image Op Benchmarks");
                imageOpOptRoot = new Group(imageOpRoot, "opts", "Options");
                imageOpTestRoot = new Group(imageOpRoot, "tests", "Tests");
                graphicsTestRoot = new Group(imageOpTestRoot, "graphics2d",
                                             "Graphics2D Tests");
                bufImgOpTestRoot = new Group(imageOpTestRoot, "bufimgop",
                                             "BufferedImageOp Tests");
                rasterOpTestRoot = new Group(imageOpTestRoot, "rasterop",
                                             "RasterOp Tests");

                ArrayList opStrs = new ArrayList();
                ArrayList opDescs = new ArrayList();
                opStrs.add("convolve3x3zero");
    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.