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 com.googlecode.sardine.model.Group

        {
          return null;
        }
        for (Propstat propstat : list)
        {
          Group o = propstat.getProp().getGroup();
          if (o != null)
          {
            if (o.getHref() != null)
            {
              return o.getHref();
            }
          }
        }
        return null;
      }
    View Full Code Here

    Examples of com.griddynamics.java.benchmarks.model.Group

            ticker.addThreadTickQueue(ticks);
        }

        public void run() {
            while (true) {
                Group currentGr = groups.poll();

                if (currentGr == null) {
                    try {
                        TimeUnit.MILLISECONDS.sleep(5);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                    logger.info(Thread.currentThread().getName() + "  didn't get any group..");
                    continue;
                }
                if (currentGr.getObjectsCount() >= currentGr.getMaxObjectsCount()) {
                    logger.info("created max objects (" + currentGr.getObjectsCount()
                            + ") for group " + currentGr.getId());
                    //continue;         //todo: we just return group to the queue
                } else {
                    logger.debug("count of created objs is " + currentGr.getObjectsCount());
                    Entity entity = new Entity();
                    entity.setObjectSizeKb(currentGr.getObjectSize());
                    currentGr.getStorage().push(ticker.getTicks(), entity);
                    currentGr.incObjectsCount();
                    if (!ticks.offer(1))
                        throw new UnsupportedOperationException("can't insert into tick queue...");
                }
                if (!groups.offer(currentGr))
                    throw new UnsupportedOperationException("cannot return current group to queue: ");
    View Full Code Here

    Examples of com.groupon.odo.proxylib.models.Group

            List<Group> groups = new ArrayList<Group>();
            List<Group> sourceGroups = PathOverrideService.getInstance().findAllGroups();

            // loop through the groups
            for (Group sourceGroup : sourceGroups) {
                Group group = new Group();

                // add all methods
                ArrayList<Method> methods = new ArrayList<Method>();
                for (Method sourceMethod : EditService.getInstance().getMethodsFromGroupId(sourceGroup.getId(), null)) {
                    Method method = new Method();
                    method.setClassName(sourceMethod.getClassName());
                    method.setMethodName(sourceMethod.getMethodName());
                    methods.add(method);
                }

                group.setMethods(methods);
                group.setName(sourceGroup.getName());
                groups.add(group);
            }

            return groups;
        }
    View Full Code Here

    Examples of com.ideo.jso.conf.Group

      }
     
      public void process(Group group, List resourcesName, List excludeResources, ServletContext servletContext, Writer out, String location) throws IOException {
        LOG.debug("Merging content of group : "+group.getName());
        for (Iterator iterator = group.getSubgroups().iterator(); iterator.hasNext();) {
          Group subGroup = (Group)iterator.next();
          String subLocation = subGroup.getBestLocation(location);
          ResourcesProcessor subGroupProcessor = null;
          if(subGroup.isMinimize()==null)
            subGroupProcessor = this;
          else
            subGroupProcessor = subGroup.getJSProcessor();
          subGroupProcessor.process(subGroup, subGroup.getJsNames(), excludeResources, servletContext, out, subLocation);
        }   
       
        for(Iterator it = resourcesName.iterator() ; it.hasNext();){
          URL url = null;
          String path = (String) it.next();
    View Full Code Here

    Examples of com.javaeye.user.Group

           
        }
       
        public String intercept(ActionInvocation invocation) throws Exception {
            UserManager userManager = (UserManager) Application.getInstance().getContainer().getComponent(UserManager.class);
            Group adminGroup = userManager.getGroup(SecurityService.ADMIN);
            if(adminGroup != null && adminGroup.getUsers().size() > 0) {
                return "setupDone";
            }else{
                return invocation.invoke();
            }
        }
    View Full Code Here

    Examples of com.liferay.portal.model.Group

        throws Exception {

        ThemeDisplay themeDisplay = (ThemeDisplay)actionRequest.getAttribute(
          WebKeys.THEME_DISPLAY);

        Group group = GroupLocalServiceUtil.getGroup(
          themeDisplay.getScopeGroupId());

        User user = UserLocalServiceUtil.getUserById(group.getClassPK());

        SocialRequestLocalServiceUtil.addRequest(
          themeDisplay.getUserId(), 0, User.class.getName(),
          themeDisplay.getUserId(), FriendsRequestKeys.ADD_FRIEND,
          StringPool.BLANK, user.getUserId());
    View Full Code Here

    Examples of com.linkedin.restli.examples.groups.api.Group

      }

      @Test
      public void testDiffFromNull() throws Exception
      {
        Group g1 = new Group();
        Group g2 = new Group(g1.data().copy());
        g2.setId(42);
        g2.setName("Some Group");
        PatchTree update = PatchCreator.diff(g1, g2);
        assertEquals(update.toString(), "{$set={id=42, name=Some Group}}");
      }
    View Full Code Here

    Examples of com.mustafaiev.tair.cts.model.Group

      public Group retrieveGroup(final Long id) throws DataNotRetrievedException {
        final Session session = this.hibernateTemplate.getSessionFactory()
            .openSession();
        final Query query = session.createQuery(RETRIEVE_GROUP_BY_ID);
        query.setLong(0, id);
        final Group group = (Group) query.uniqueResult();
        return group;
      }
    View Full Code Here

    Examples of com.mysema.query.group.Group

        public void First_Set_And_List() {
            Map<Integer, Group> results = CollQueryFactory.from(post, posts).from(comment, comments)
                .where(comment.post.id.eq(post.id))
                .transform(groupBy(post.id).as(post.name, set(comment.id), list(comment.text)));

            Group group = results.get(1);
            assertEquals(toInt(1), group.getOne(post.id));
            assertEquals("Post 1", group.getOne(post.name));
            assertEquals(toSet(1), group.getSet(comment.id));
            assertEquals(Arrays.asList("Comment 1"), group.getList(comment.text));
        }
    View Full Code Here

    Examples of com.nijiko.permissions.Group


      @Override
      void removeGroup(String playerName, Player worldReference, String startingGroup) {
        User user = ph.getUserObject(worldReference.getWorld().getName(), playerName);
        Group firstGroup = ph.getGroupObject(worldReference.getWorld().getName(), startingGroup);
        user.removeParent(firstGroup);   
      }
    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.