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.buschmais.jqassistant.core.analysis.api.rule.Group

       *             If an undefined group is referenced.
       */
      private List<Group> getSelectedGroups(List<String> groupNames, RuleSet ruleSet) throws RuleSetResolverException {
        final List<Group> selectedGroups = new ArrayList<>();
        for (String groupName : groupNames) {
          Group group = ruleSet.getGroups().get(groupName);
          if (group != null) {
            selectedGroups.add(group);
          } else {
            LOGGER.warn("Group '{}' is not defined, skipping.", groupName);
          }
    View Full Code Here

    Examples of com.buschmais.jqassistant.core.model.api.rule.Group

         * @throws RuleSetResolverException If an undefined group is referenced.
         */
        private List<Group> getSelectedGroups(List<String> groupNames, RuleSet ruleSet) throws RuleSetResolverException {
            final List<Group> selectedGroups = new ArrayList<>();
            for (String groupName : groupNames) {
                Group group = ruleSet.getGroups().get(groupName);
                if (group == null) {
                    throw new RuleSetResolverException("The group '" + groupName + "' is not defined.");
                }
                selectedGroups.add(group);
            }
    View Full Code Here

    Examples of com.cloudera.distributed.Group

            conf.getMasterGossipMaxAgeMs());
      }

      GossipedMasterAckManager(List<Pair<String, Integer>> peers, int port,
          long maxAgeMs) {
        group = new Group();
        for (Pair<String, Integer> p : peers) {
          group.addNode(new TCPNodeId(p.getLeft(), p.getRight()));
        }
        this.port = port;
        // TODO(henry) choose the interface from config
    View Full Code Here

    Examples of com.cuubez.visualizer.annotation.Group

            return false;
        }

        private boolean scanGroup(Class<?> clazz, RootResource rootResource) {

            Group group = clazz.getAnnotation(Group.class);

            if (group != null) {

                rootResource.setGroupName(group.name());
                rootResource.setGroupTittle(group.title());

                return true;
            }

            return false;
    View Full Code Here

    Examples of com.cybozu.vmbkp.config.Group

        public List<Integer> getDiskIdList()
        {
            List<Integer> ret = new LinkedList<Integer>();
           
            /* Traverse the index (uuid -> diskId) */
            Group diskIndexGroup = this.generateDiskIndexGroup();
            List<Entry> entryList = cfg_.getAllEntries(diskIndexGroup);
            for (Entry entry : entryList) {
                String uuid = entry.getKey();
                String diskIdStr = entry.getVal();

    View Full Code Here

    Examples of com.dianping.cat.home.alert.policy.entity.Group

        Type type = m_config.findType(typeName);
        if (type == null) {
          type = m_config.findType(DEFAULT_TYPE);
        }

        Group group = type.findGroup(groupName);

        if (group == null) {
          group = type.findGroup(DEFAULT_GROUP);
        }

        return group.findLevel(levelName);
      }
    View Full Code Here

    Examples of com.dianping.cat.home.group.entity.Group

      public List<String> queryIpByDomainAndGroup(String domain, String group) {
        Domain domainInfo = m_domainGroup.findDomain(domain);

        if (domainInfo != null) {
          Group groupInfo = domainInfo.findGroup(group);

          if (groupInfo != null) {
            return groupInfo.getIps();
          }
        }
        return new ArrayList<String>();
      }
    View Full Code Here

    Examples of com.dthielke.starburst.Group

        @Override
        public boolean groupAdd(String world, String group, String permission) {
            GroupManager gm = perms.getGroupManager();
            GroupSet set = gm.getWorldSet(Bukkit.getWorld(world));
            if (set.hasGroup(group)) {
                Group g = set.getGroup(group);

                boolean value = !permission.startsWith("^");
                permission = value ? permission : permission.substring(1);
                g.addPermission(permission, value, true, true);

                for (User user : gm.getAffectedUsers(g)) {
                    user.applyPermissions(gm.getFactory());
                }
                return true;
    View Full Code Here

    Examples of com.dtolabs.rundeck.core.authentication.Group

            assertNotNull("Context is null.", contexts);
            assertEquals("Incorrect number of contexts returned when matching on group.", 1, contexts.size());
           
            formalSubject = new Subject();
            formalSubject.getPrincipals().add(new Username("test_1"));
            formalSubject.getPrincipals().add(new Group("admin")); // <-- will match on group membership.
            contexts = policies.narrowContext(formalSubject, environment);
            assertNotNull("Context is null.", contexts);
            assertEquals("Incorrect number of contexts returned when matching on group.", 1, contexts.size());
           
    View Full Code Here

    Examples of com.dtrules.automapping.Group

        }

        @Override
        public Object mapNode(AutoDataMap autoDataMap, LabelMap labelMap) {
           
            Group target = autoDataMap.getCurrentGroup();
           
            return target.getDataTarget().mapMap(autoDataMap,labelMap, this);

        }
    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.