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

        positionInPanel = 0;
        offset = positionInPanel;
        positionInPanel *= -1;

        Contact contact = null;
        Group group = null;
        ListElement listElement;
        g.setColor(Color.black);
        g.setFont(new Font("Tahoma", Font.PLAIN, 11));

        for(int i = 0; i <= lastElementIndex - firstElementIndex; i++){
    View Full Code Here

    Examples of at.bestsolution.efxclipse.formats.fxg.fxg.Group

       * <!-- begin-user-doc -->
       * <!-- end-user-doc -->
       * @generated
       */
      public NotificationChain basicSetMask(Group newMask, NotificationChain msgs) {
        Group oldMask = mask;
        mask = newMask;
        if (eNotificationRequired()) {
          ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, FxgPackage.ELLIPSE__MASK, oldMask, newMask);
          if (msgs == null) msgs = notification; else msgs.add(notification);
        }
    View Full Code Here

    Examples of at.bestsolution.efxclipse.runtime.demo.contacts.Group

      public VCardContactsResource() {
        super(URI.createPlatformResourceURI("at.bestsolution.efxclipse.runtime.demo.contacts/vcards", false));
       
        try {
          Group rootGroup = ContactsFactory.eINSTANCE.createGroup();
          for (File file : getContacts()) {
            Contact contact = readFromVCard(file.getAbsolutePath());
            rootGroup.getContacts().add(contact);
          }
          getContents().add(rootGroup);
        } catch (Exception e) {
          e.printStackTrace();
        }
    View Full Code Here

    Examples of be.demmel.jgws.entities.Group

     
      @Test
      public void injectGroups() {
        EntityManagerFactory entityManagerFactory = Persistence.createEntityManagerFactory("jgws");
       
        persist(entityManagerFactory, new Group(1, "Banned", "Bnd", (byte)4));
        persist(entityManagerFactory, new Group(2, "Guest", "Gst", (byte)3));
        persist(entityManagerFactory, new Group(3, "Member", "", (byte)3));
        persist(entityManagerFactory, new Group(4, "Moderator", "Mod", (byte)10));
        persist(entityManagerFactory, new Group(5, "Admin", "Adm", (byte)5));
        persist(entityManagerFactory, new Group(6, "HeadAdmin", "[God]", (byte)5));
     
      }
    View Full Code Here

    Examples of br.com.visualmidia.business.Group

        public List<Group> getGroups() {
            List<Group> userGroups = new ArrayList<Group>();
            TreeItem[] treeItems = treeGroup.getItems();
            try {
                for (int i = 0; i < treeItems.length; i++) {
                    Group group = (Group) system.query(new GetGroup(treeItems[i].getText()));
                    userGroups.add(group);
                }
            } catch (Exception e) {
                e.printStackTrace();
            }
    View Full Code Here

    Examples of brooklyn.entity.Group

            super.stop();
        }

        protected void addHostTrackerPolicy() {
            Group hosts = getDockerHostCluster();
            if (hosts != null) {
                MemberTrackingPolicy hostTrackerPolicy = addPolicy(PolicySpec.create(MemberTrackingPolicy.class)
                        .displayName("Docker host tracker")
                        .configure("group", hosts));
                LOG.info("Added policy {} to {}, during start", hostTrackerPolicy, this);
    View Full Code Here

    Examples of ca.uhn.hl7v2.model.Group

            StructureDefinition retVal = new StructureDefinition();
            retVal.setName(theStructure.getName());

            if (theStructure instanceof Group) {
                retVal.setSegment(false);
                Group group = (Group) theStructure;
                int index = 0;
                for (String nextName : group.getNames()) {
                    Structure nextChild = group.get(nextName);
                    StructureDefinition structureDefinition = createStructureDefinition(nextChild, thePreviousLeaf);
                    structureDefinition.setNameAsItAppearsInParent(nextName);
                    structureDefinition.setRepeating(group.isRepeating(nextName));
                    structureDefinition.setRequired(group.isRequired(nextName));
                    structureDefinition.setPosition(index++);
                    structureDefinition.setParent(retVal);
                    retVal.addChild(structureDefinition);
                }
            } else {
    View Full Code Here

    Examples of cascading.pipe.Group

        bind();
        }

      protected void buildGraph()
        {
        Group group = (Group) Util.getFirst( node.getSourceElements() );

        Duct rhsDuct;

        if( group.isGroupBy() )
          rhsDuct = new HadoopGroupByGate( flowProcess, (GroupBy) group, IORole.source );
        else
          rhsDuct = new HadoopCoGroupGate( flowProcess, (CoGroup) group, IORole.source );

        addHead( rhsDuct );
    View Full Code Here

    Examples of civquest.group.Group

            this.map = map;
        }

        public void actionPerformed(FunctionActionEvent e) {
            if (this.map.getGameData() != null) {
                Group group = this.map.getActiveGroup();
                Coordinate wf = this.map.getWorkingFieldPos();
                int x = wf.x;
                int y = wf.y;
               
                Vector<Coordinate> coords = new Vector();
                Vector<Coordinate> temp = new Vector();
               
                //no loop here because I want to change the order a bit...
                temp.add(new Coordinate(x-1, y-1));
                temp.add(new Coordinate(x, y-1));
                temp.add(new Coordinate(x+1, y-1));
                temp.add(new Coordinate(x-1, y));
                temp.add(new Coordinate(x+1, y));
                temp.add(new Coordinate(x-1, y+1));
                temp.add(new Coordinate(x, y+1));
                temp.add(new Coordinate(x+1, y+1));
                temp.add(wf);

                MapData mapData = Game.getMapData();
                for (int i = 0; i < temp.size(); i++) {
                    Coordinate coord = temp.get(i);
                    if (mapData.isOnMap(coord)) {
                        coords.add(coord);
                    }
                }
                Long[] fieldIDs = new Long[temp.size()];
                for (int i = 0; i < coords.size(); i++) {
                    fieldIDs[i] = mapData.getFieldID(coords.get(i));
                }

                if (group.getFields().contains(wf)) {
                    //unmark fields
                    UnmarkField unmarkField = new UnmarkField(group, coords, fieldIDs);
                    unmarkField.execute();
                } else {
                    //mark fields
    View Full Code Here

    Examples of cli.System.Text.RegularExpressions.Group

                int i=0;
                // we're not interested in group 0
                e.MoveNext();
                e.get_Current();
                while (e.MoveNext()) {
                    Group g = (Group)e.get_Current();
                    //System.err.println("group: " + i + " " + g.get_Value());
                    groupArray[i++] = StringValue.makeStringValue(g.get_Value());
                }
                return new ArrayIterator(groupArray);
            }
        }
    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.