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 java.security.acl.Group

        Set<String> roles = new HashSet<String>();
       
        Set<Principal> principals = this.subject.getPrincipals();
        for(Principal p: principals) {
          if ((p instanceof Group) && p.getName().equals("Roles")){ //$NON-NLS-1$
            Group g = (Group)p;
            Enumeration<? extends Principal> rolesPrinciples = g.members();
            while(rolesPrinciples.hasMoreElements()) {
              roles.add(rolesPrinciples.nextElement().getName())
            }
          }
        }
    View Full Code Here

    Examples of javafx.scene.Group

      public Scene createVisualScene() {
        final int screenHeight = GetScreenWorkingHeight();
        final int screenWidth = GetScreenWorkingWidth();
        final double delimter = (screenWidth / 1.673);
        final int translatLocation = (int) Math.round(screenWidth - delimter);
        final Group root = new Group();
        final Random rand = new Random();

        UISession.getMediaView().setFitWidth(1);
        UISession.getMediaView().setFitHeight(1);
        UISession.getMediaView().setPreserveRatio(false);

        final VBox vbox = new VBox();
        final HBox hbox = new HBox(2);
        final int bands = UISession.getMediaPlayer().getAudioSpectrumNumBands() - 20;
        final Rectangle[] rects = new Rectangle[bands];
        for (int i = 0; i < rects.length; i++) {
          rects[i] = new Rectangle();
          rects[i].getTransforms().add(new Rotate(180, 0, 0)); //
          rects[i].setFill(Color.GRAY);
          rects[i].setArcHeight(screenHeight);
          hbox.getChildren().add(rects[i]);

        }

        final Text durationLabel = new Text(25, 25, MediaUtils.activeInfo);
        durationLabel.setFill(Color.WHITESMOKE);
        durationLabel.setFont(Font.font(java.awt.Font.SANS_SERIF, 25));
        final DropShadow ds = new DropShadow();
        ds.setOffsetY(3.0f);
        ds.setColor(Color.BLACK);

        durationLabel.setEffect(ds);

        vbox.getChildren().add(hbox);
        root.getChildren().add(UISession.getMediaView());
        root.getChildren().add(vbox);

        root.getChildren().add(durationLabel);
        durationLabel.setTranslateX(-25);
        vbox.setMaxWidth(screenWidth);

        hbox.setTranslateY(translatLocation);
        final Scene scene = new Scene(root, screenWidth, screenHeight,
    View Full Code Here

    Examples of javax.media.j3d.Group

            @Override
            public void actionPerformed(ActionEvent e) {
               
                GroupNode gn=(GroupNode)getNode();
               
                Group g=new Group();
                // TODO i18n
                g.setName("Frame");
               
                float[] axis = makeAxis(0);
                LineArray la = new LineArray(axis.length/3, LineArray.COORDINATES);
                la.setCoordinates(0,axis);
                Appearance a = new Appearance();
                a.setPolygonAttributes(new PolygonAttributes(PolygonAttributes.POLYGON_LINE, PolygonAttributes.CULL_NONE, 0));
                ColoringAttributes ca = new ColoringAttributes();
                ca.setColor(0.0f,0.0f,1.0f);
                a.setColoringAttributes(ca);
                Shape3D saxis = new Shape3D(la, a);
                saxis.setName("X");
                g.addChild(saxis);
               
                // Y axis in green
                axis = makeAxis(1);
                la = new LineArray(axis.length/3, LineArray.COORDINATES);
                la.setCoordinates(0,axis);
                a = new Appearance();
                a.setPolygonAttributes(new PolygonAttributes(PolygonAttributes.POLYGON_LINE, PolygonAttributes.CULL_NONE, 0));
                ca = new ColoringAttributes();
                ca.setColor(0.0f,1.0f,0.0f);
                a.setColoringAttributes(ca);
                saxis = new Shape3D(la, a);
                saxis.setName("Y");
                g.addChild(saxis);
               
                // Z axis in purple
                axis = makeAxis(2);
                la = new LineArray(axis.length/3, LineArray.COORDINATES);
                la.setCoordinates(0,axis);
                a = new Appearance();
                a.setPolygonAttributes(new PolygonAttributes(PolygonAttributes.POLYGON_LINE, PolygonAttributes.CULL_NONE, 0));
                ca = new ColoringAttributes();
                ca.setColor(1.0f,0.0f,1.0f);
                a.setColoringAttributes(ca);
                saxis = new Shape3D(la, a);
                saxis.setName("Z");
                g.addChild(saxis);
               
                gn.addChild(g);
               
                AddEdit ae=new AddEdit(gn, g, null);
                getNode().getTree().getUndoableEditListener().undoableEditHappened(
    View Full Code Here

    Examples of javax.swing.GroupLayout.Group

            return painelLabels;
        }
     
      private Group groupComponents(GroupLayout layout, Component ... components) {
        Group g = layout.createParallelGroup(GroupLayout.Alignment.LEADING);
        for (Component c: components) {
          g.addComponent(c);
        }
        return g;
      }
    View Full Code Here

    Examples of jimm.datavision.Group

        this.newGroupItems = groupItems;

        // Create list of current groups
        oldGroupItems = new ArrayList();
        for (Iterator iter = report.groups(); iter.hasNext(); ) {
      Group group = (Group)iter.next();
      oldGroupItems.add(new GroupWinListItem(group.getSelectable(), group));
        }

    }
    View Full Code Here

    Examples of jnr.posix.Group

        @JRubyMethod(name = "getgrnam", required=1, module = true)
        public static IRubyObject getgrnam(IRubyObject recv, IRubyObject name) {
            Ruby runtime = recv.getRuntime();
            String nam = name.convertToString().toString();
            try {
                Group grp = runtime.getPosix().getgrnam(nam);
                if(grp == null) {
                    if (Platform.IS_WINDOWS) {  // MRI behavior
                        return runtime.getNil();
                    }
                    throw runtime.newArgumentError("can't find group for " + nam);
    View Full Code Here

    Examples of jodd.json.mock.Group

      @Test
      public void testArrayType() {
        Person igor = creator.createJodder();
        Person modesty = creator.createModesty();

        Group group = new Group("brothers", igor, modesty);
        String json = new JsonSerializer().include("people").exclude("*.class").serialize(group);
        Group bro = new JsonParser().map(Group.class).parse(json);

        assertNotNull(bro);
        assertEquals("brothers", bro.getGroupName());
        assertEquals(2, bro.getPeople().length);
        assertEquals("Igor", bro.getPeople()[0].getFirstname());
        assertEquals("Modesty", bro.getPeople()[1].getFirstname());
      }
    View Full Code Here

    Examples of lupos.engine.operators.singleinput.Group

          Sort sort = new Sort();
          LinkedList<Variable> listOfVars = new LinkedList<Variable>();
          listOfVars.add(new Variable(((ASTVar)child0).getName()));
          ComparatorVariables comparator = new ComparatorVariables(listOfVars);
          sort.setComparator(comparator);
          Group group = new Group(comparator);
          sort.addSucceedingOperator(group);
          group.addSucceedingOperator(federatedQuery);
          sso.addSucceedingOperator(sort);
        } else {
          sso.addSucceedingOperator(federatedQuery);
        }
        Join join = new Join();
    View Full Code Here

    Examples of me.kafeitu.demo.activiti.entity.account.Group

      @PersistenceContext
      private EntityManager em;
     
      @Test
      public void testUserData() throws Exception {
        Group group = em.find(Group.class, "admin");
        assertNotNull(group);
       
        group = em.find(Group.class, "user");
        assertNotNull(group);
       
    View Full Code Here

    Examples of mungbean.protocol.command.Group

            }

            public void runGroup(DBCollection<Map<String, Object>> collection) {
                HashMap<String, Double> initialValues = new HashMap<String, Double>();
                initialValues.put("foo", 0D);
                List<Map<String, Object>> result = collection.query(new Group(new String[] { "foo" }, initialValues, "function(obj, prev){ prev.csum=5; }"), new Query());
                specify(result.get(0).get("csum"), does.equal(5D));
            }
    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.