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 org.pau.assetmanager.entities.Group

       * @param user to persist
       * @return the persisted user (usually, with an autoincrement)
       */
      public static User persist(User user) {
        DaoFunction.persistFunction().apply(user);
        Group group = new Group();
        group.setGroupCode(DEFAULT_GROUP);
        group.setUsername(user.getUsername());
        DaoFunction.persistFunction().apply(group);   
        return user;
      }
    View Full Code Here

    Examples of org.pentaho.reporting.engine.classic.core.Group

        collectStylesFromBand(report.getPageHeader());
        collectStylesFromBand(report.getPageFooter());
        collectStylesFromBand(report.getItemBand());
        for (int i = 0; i < report.getGroupCount(); i++)
        {
          final Group g = report.getGroup(i);
          collectStylesFromBand(g.getHeader());
          collectStylesFromBand(g.getFooter());
        }

        return (ElementStyleSheet[])
            reportStyles.toArray(new ElementStyleSheet[reportStyles.size()]);
      }
    View Full Code Here

    Examples of org.picketlink.idm.api.Group

                    Iterator<?> iter = getSecurityContext().getObjects(
                            new ClassObjectFilter(Group.class)).iterator();

                    boolean found = false;
                    while (iter.hasNext()) {
                        Group g = (Group) iter.next();
                        if (g.equals(group)) {
                            found = true;
                            break;
                        }
                    }
    View Full Code Here

    Examples of org.platformlayer.ops.users.PosixGroupManagement.Group

      @Handler
      public void doOperation() throws OpsException {
        OpsTarget target = OpsContext.get().getInstance(OpsTarget.class);

        Map<String, Group> groups = PosixGroupManagement.getGroups(target);
        Group group = groups.get(groupName);
        if (group == null) {
          target.executeCommand("groupadd {0}", groupName);
        }
      }
    View Full Code Here

    Examples of org.restlet.security.Group

            User larmstrong = new User("larmstrong", "pwd", "Louis", "Armstrong",
                    "la@foobar.com");
            realm.getUsers().add(larmstrong);

            // Add groups
            Group employees = new Group("employees ", "All FooBar employees");
            employees.getMemberUsers().add(larmstrong);
            realm.getRootGroups().add(employees);

            Group contractors = new Group("contractors ", "All FooBar contractors");
            contractors.getMemberUsers().add(stiger);
            realm.getRootGroups().add(contractors);

            Group managers = new Group("managers", "All FooBar managers");
            realm.getRootGroups().add(managers);

            Group directors = new Group("directors ", "Top-level directors");
            directors.getMemberUsers().add(larmstrong);
            managers.getMemberGroups().add(directors);

            Group developers = new Group("developers", "All FooBar developers");
            realm.getRootGroups().add(developers);

            Group engineers = new Group("engineers", "All FooBar engineers");
            engineers.getMemberUsers().add(stiger);
            developers.getMemberGroups().add(engineers);

            // realm.map(customer1, app.getRole("user"));
            realm.map(managers, app.getRole("admin"));
    View Full Code Here

    Examples of org.rhq.modules.integrationTests.restApi.d.Group

        }

        @Test
        public void testGetAggregateForGroup() throws Exception {

            Group group = new Group(X_TEST_GROUP);

            Response resp =
            given()
                    .header(acceptJson)
                    .contentType(ContentType.JSON)
                    .body(group)
                .expect()
                    .statusCode(isOneOf(200,201))
                    .log().ifError()
                .when()
                    .post("/group");


            Group createdGroup = resp.as(Group.class);


            // Determine location from response
            int groupId = createdGroup.getId();

            try {
                // add the platform
                given()
                    .header(acceptJson)
    View Full Code Here

    Examples of org.rometools.feed.module.sle.types.Group

            for (int i = 0; (groups != null) && (i < groups.size()); i++) {
                Element ge = (Element) groups.get(i);
                Namespace ns = (ge.getAttribute("ns") == null) ? element.getNamespace() : Namespace.getNamespace(ge.getAttributeValue("ns"));
                String elementName = ge.getAttributeValue("element");
                String label = ge.getAttributeValue("label");
                values.add(new Group(ns, elementName, label));
            }

            sle.setGroupFields((Group[]) values.toArray(new Group[values.size()]));
            values = (values.size() == 0) ? values : new ArrayList();
    View Full Code Here

    Examples of org.sbml.jsbml.ext.groups.Group

            model.addExtension(GroupsConstants.namespaceURI, groupModelPlugin);

            return groupModelPlugin.getListOfGroups();
          }
        } else if (contextObject instanceof Group) {
          Group group = (Group) contextObject;

          if (elementName.equals("listOfMembers")) {

            return group.getListOfMembers();
          }
          else if (elementName.equals("listOfMemberConstraints")) {

            return group.getListOfMemberConstraints();
          }

        }

        else if (contextObject instanceof ListOf<?>) {
          ListOf<SBase> listOf = (ListOf<SBase>) contextObject;

          if (elementName.equals("group")) {
            Model model = (Model) listOf.getParentSBMLObject();
            GroupsModelPlugin extendeModel = (GroupsModelPlugin) model.getExtension(GroupsConstants.namespaceURI);

            Group group = new Group();
            extendeModel.addGroup(group);

            return group;
          } else if (elementName.equals("member")) {
            Member member = new Member();
    View Full Code Here

    Examples of org.sbml.jsbml.ext.render.Group

        }

        else if (contextObject instanceof Style) {
          Style style = (Style) contextObject;
          if (elementName.equals(RenderConstants.group)) {
            Group g = new Group();
            style.setGroup(g);

            return g;
          }
        }

        else if (contextObject instanceof Polygon) {
          Polygon polygon = (Polygon) contextObject;
          SBase newElement = null;
          if (elementName.equals(RenderConstants.listOfElements)) {
            newElement = polygon.getListOfElements();
          }
          if (newElement != null) {
            polygon.registerChild(newElement);
            return newElement;
          }
        }

        else if (contextObject instanceof LineEnding) {
          LineEnding lineEnding = (LineEnding) contextObject;
          if (elementName.equals(RenderConstants.boundingBox)) {
            BoundingBox bbox = new BoundingBox();
            lineEnding.setBoundingBox(bbox);

            return bbox;
          }
          else if (elementName.equals(RenderConstants.group)) {
            Group g = new Group();
            lineEnding.setGroup(g);

            return g;
          }
        }
    View Full Code Here

    Examples of org.springframework.data.neo4j.Group

        @Test
        @Transactional
        public void testTraverseFromGroupToPeople() {
            Person p = persistedPerson("Michael", 35);
            Group group = new Group().persist();
            group.setName("dev");
            group.addPerson(p);
            final TraversalDescription traversalDescription = Traversal.description().relationships(DynamicRelationshipType.withName("persons")).evaluator(Evaluators.excludeStartPosition());
            Iterable<Person> people = (Iterable<Person>) group.findAllByTraversal(Person.class, traversalDescription);
            final HashSet<Person> found = new HashSet<Person>();
            for (Person person : people) {
                found.add(person);
            }
            assertEquals(Collections.singleton(p),found);
    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.