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 quickfix.Group

            message.setField(new Symbol(SYMBOL));
            message.setField(new ClOrdID(CLORD_ID));
            message.setField(new TradeOriginationDate(TX_DATE));

            Group g1 = new Group(NoAllocs.FIELD, AllocAccount.FIELD);
            g1.setField(new AllocAccount("ABC"));
            g1.setField(new IndividualAllocID("PQR"));
            message.addGroup(g1);
            Group g2 = new Group(NoAllocs.FIELD, AllocAccount.FIELD);
            g2.setField(new AllocAccount("MNO"));
            g2.setField(new IndividualAllocID("XYZ"));
            message.addGroup(g2);

            message.getTrailer().setField(new CheckSum(CHECKSUM));

            MessageContext msgCtx = new MessageContext();
    View Full Code Here

    Examples of ro.isdc.wro.model.group.Group

            is(1));
      }

      private WroModel getModel() {
        WroModel model = new WroModel();
        Group group = new Group(TEST_GROUP);
        Resource js1 = Resource.create("a", ResourceType.JS);
        Resource js2 = Resource.create("b", ResourceType.JS);
        Resource css1 = Resource.create("c", ResourceType.CSS);

        group.setResources(Arrays.asList(js1, js2, css1));
        model.setGroups(Arrays.asList(group));

        return model;
      }
    View Full Code Here

    Examples of ru.org.linux.group.Group

        ModelAndView mv = new ModelAndView("view-news-archive");

        Section section = sectionService.getSection(sectionid);
        mv.getModel().put("section", section);

        Group group = null;
        if (groupName!=null) {
          group = groupDao.getGroup(section, groupName);
        }

        mv.getModel().put("group", group);
    View Full Code Here

    Examples of simpleserver.config.xml.Group

          if (args.length > 1 && Dimension.get(args[1]) != Dimension.LIMBO) {
            dim = Dimension.get(args[1]);
          }
          player.setChat(new DimensionChat(player, dim));
        } else if (mode.equals("group")) {
          Group group = player.getGroup();

          Config config = player.getServer().config;

          if (args.length > 1) {
            try {
    View Full Code Here

    Examples of sk.netmap.bo.Group

       
      }

      private void add() {
        if (isRootNodeSelectedPath()) { // add group
          Group newGroup = new Group();
          newGroup.setName("Group"+tree.getRowCount());
          data.addGroup(newGroup);

        } else if (isGroupNodeSelectedPath()) { // add server
          Server newServer = new Server();
          newServer.setName("Server"+tree.getRowCount());
    View Full Code Here

    Examples of storm.trident.graph.Group

            }
           
           
            Set<Group> initialGroups = new HashSet<Group>();
            for(List<Node> colocate: _colocate.values()) {
                Group g = new Group(graph, colocate);
                boltNodes.removeAll(colocate);
                initialGroups.add(g);
            }
            for(Node n: boltNodes) {
                initialGroups.add(new Group(graph, n));
            }
           
           
            GraphGrouper grouper = new GraphGrouper(graph, initialGroups);
            grouper.mergeFully();
            Collection<Group> mergedGroups = grouper.getAllGroups();
           
           
           
            // add identity partitions between groups
            for(IndexedEdge<Node> e: new HashSet<IndexedEdge>(graph.edgeSet())) {
                if(!(e.source instanceof PartitionNode) && !(e.target instanceof PartitionNode)) {               
                    Group g1 = grouper.nodeGroup(e.source);
                    Group g2 = grouper.nodeGroup(e.target);
                    // g1 being null means the source is a spout node
                    if(g1==null && !(e.source instanceof SpoutNode))
                        throw new RuntimeException("Planner exception: Null source group must indicate a spout node at this phase of planning");
                    if(g1==null || !g1.equals(g2)) {
                        graph.removeEdge(e);
                        PartitionNode pNode = makeIdentityPartition(e.source);
                        graph.addVertex(pNode);
                        graph.addEdge(e.source, pNode, new IndexedEdge(e.source, pNode, 0));
                        graph.addEdge(pNode, e.target, new IndexedEdge(pNode, e.target, e.index));                   
                    }
                }
            }
            // if one group subscribes to the same stream with same partitioning multiple times,
            // merge those together (otherwise can end up with many output streams created for that partitioning
            // if need to split into multiple output streams because of same input having different
            // partitioning to the group)
           
            // this is because can't currently merge splitting logic into a spout
            // not the most kosher algorithm here, since the grouper indexes are being trounced via the adding of nodes to random groups, but it
            // works out
            List<Node> forNewGroups = new ArrayList<Node>();
            for(Group g: mergedGroups) {
                for(PartitionNode n: extraPartitionInputs(g)) {
                    Node idNode = makeIdentityNode(n.allOutputFields);
                    Node newPartitionNode = new PartitionNode(idNode.streamId, n.name, idNode.allOutputFields, n.thriftGrouping);
                    Node parentNode = TridentUtils.getParent(graph, n);
                    Set<IndexedEdge> outgoing = graph.outgoingEdgesOf(n);
                    graph.removeVertex(n);
                   
                    graph.addVertex(idNode);
                    graph.addVertex(newPartitionNode);
                    addEdge(graph, parentNode, idNode, 0);
                    addEdge(graph, idNode, newPartitionNode, 0);
                    for(IndexedEdge e: outgoing) {
                        addEdge(graph, newPartitionNode, e.target, e.index);
                    }
                    Group parentGroup = grouper.nodeGroup(parentNode);
                    if(parentGroup==null) {
                        forNewGroups.add(idNode);
                    } else {
                        parentGroup.nodes.add(idNode);
                    }
                }
            }
            // TODO: in the future, want a way to include this logic in the spout itself,
            // or make it unecessary by having storm include metadata about which grouping a tuple
            // came from
           
            for(Node n: forNewGroups) {
                grouper.addGroup(new Group(graph, n));
            }
           
            // add in spouts as groups so we can get parallelisms
            for(Node n: spoutNodes) {
                grouper.addGroup(new Group(graph, n));
            }
           
            grouper.reindex();
            mergedGroups = grouper.getAllGroups();
                   
    View Full Code Here

    Examples of tripleplay.ui.Group

        @Override public String title () {
            return "UI: BorderLayout";
        }

        @Override protected Group createIface () {
            Group buttons = new Group(
                AxisLayout.horizontal(),
                Styles.make(Style.BACKGROUND.is(Background.solid(0xFFFFFFFF).inset(5))));

            for (final String edge : Panel.EDGES) {
                buttons.add(new Button(edge).onClick(new UnitSlot() {
                    @Override public void onEmit () {
                        _panel.toggleEdge(edge);
                    }
                }));
            }

            buttons.add(new Shim(10, 1)).add(new Button("Toggle Gaps").onClick(new UnitSlot() {
                @Override public void onEmit () {
                    setPanel(_panel.useGroups, _panel.gaps == 0 ? 5 : 0);
                }
            }));

            buttons.add(new Shim(10, 1)).add(new Button("Toggle Sizing").onClick(new UnitSlot() {
                @Override public void onEmit () {
                    setPanel(!_panel.useGroups, _panel.gaps);
                }
            }));

            _root = new Group(AxisLayout.vertical().offStretch()).setConstraint(AxisLayout.stretched());
            _root.add(buttons);
            setPanel(false, 0);
            return _root;
        }
    View Full Code Here

    Examples of ua.ck.geekhub.entity.Group

        public void deleteGroup(Group group) {
            sessionFactory.getCurrentSession().delete(group);
        }

        public void createGroup(String name) {
            Group group = new Group();
            group.setName(name);
            saveGroup(group);
        }
    View Full Code Here

    Examples of ucar.nc2.Group

        }

        Variable v = ds.findVariable("time_offset");
        v.addAttribute(new Attribute( "units", "seconds since "+dfo.toDateTimeString(start)));

        Group root = ds.getRootGroup();
        root.addAttribute(new Attribute( "Convention", "Suomi-Station-CDM"));   
        ds.finish();
      }
    View Full Code Here

    Examples of xregistry.group.Group

                        userObj.addAuthorizedResource(resourceID, action);
                    }else{
                        log.info("User "+ action + " realted to capability is not found");
                    }
                }else{
                    Group groupObj = groupManager.getGroup(actor);
                    if(groupObj != null){
                        groupObj.addAuthorizedResource(resourceID, action);
                    }else{
                        log.info("Group "+ action + " realted to capability is not found");
                    }
                }
            } catch (SQLException e) {
    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.