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 de.iritgo.aktera.permissions.security.Group

        try
        {
          for (AkteraGroup akteraGroup : userDAO.findGroupsByUser(akteraUser))
          {
            String groupName = akteraGroup.getName();
            Group group = (Group) groups.get(groupName);
            if (group == null)
            {
              group = new Group(groupName);
              groups.put(groupName, group);

              for (Permission permissionEntity : permissionDAO.findGroupPermissions(akteraGroup))
              {
                Tuple2 aclKey = new Tuple2(permissionEntity.getObjectType() != null ? permissionEntity
                        .getObjectType() : GLOBAL_OBJECT_TYPE, permissionEntity.getObjectId());
                Acl acl = aclByDomainObject.get(aclKey);
                if (acl == null)
                {
                  acl = new Acl(ROOT, ROOT_NAME);
                  aclByDomainObject.put(aclKey, acl);
                }
                AclEntry aclEntry = acl.findAclEntry(group, permissionEntity.getNegative());
                if (aclEntry == null)
                {
                  aclEntry = new AclEntry(group);
                  if (permissionEntity.getNegative())
                  {
                    aclEntry.setNegativePermissions();
                  }
                  acl.addEntry(ROOT, aclEntry);
                }
                aclEntry.addPermission(new SimplePermission(permissionEntity.getPermission()));
              }
            }

            if (! group.isMember(principal))
            {
              group.addMember(principal);
            }
          }

          for (Permission permissionEntity : permissionDAO.findUserPermissions(akteraUser))
          {
    View Full Code Here

    Examples of de.iritgo.aktera.usergroupmgr.Group

      /**
       * @see de.iritgo.aktera.usergroupmgr.GroupManager#find(de.iritgo.aktera.usergroupmgr.Group.Property, java.lang.Object)
       */
      public Group find(Property property, Object value) throws UserMgrException
      {
        Group group = null;

        try
        {
          Persistent g = getGroupPersistent();

    View Full Code Here

    Examples of de.kopis.jusenet.nntp.Group

            updateTimer = new Timer(Integer.parseInt(Application.getInstance().getProperty("updateinterval", "" + UPDATE_INTERVAL)),
                    new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    GroupListModel model = (GroupListModel) subscribedGroupList.getModel();
                    for (int i = 0; i < model.getSize(); i++) {
                        Group g = (Group) model.getElementAt(i);
                        try {
                            NNTPUtils.getInstance().getArticles(g, g.getLastUpdate());
                        } catch (NntpNotConnectedException e1) {
                            GuiUtils.showError(e1);
                        }
                    }
                    //TODO use Logger to log this messages
    View Full Code Here

    Examples of de.sciss.jcollider.Group

    //
    //        cSetNResp        = new OSCResponderNode( server.getAddr(), "/c_setn", cSetNRespBody );

            // the group is added to the *head* coz we want to be able to write
            // to the player's input bus (to see the meters, to allow monitoring)
            grpRoot          = new Group( server.getDefaultGroup(), kAddToHead );
            grpRoot.setName( "Recorder" );
            nw.register( grpRoot );
           
            recFile          = IOUtil.createTempFile();
          }
    View Full Code Here

    Examples of edu.mit.simile.fresnel.configuration.Group

              Value obj = stmt.getObject();
              if (obj instanceof Resource) {
                Resource objRes = (Resource) obj;
                try {
                  Group objGroup = conf.groupLookupOrAdd(objRes);
                  out.setGroupUse(objGroup);
                } catch (ResourceNotFoundException e) {
                  // if not a group, try a format
                  try {
                    Format objFormat = conf.formatLookup(objRes);
    View Full Code Here

    Examples of edu.ubb.warp.model.Group

          groupsres.addContainerProperty("Group ID", String.class, null);
          groupsres.addContainerProperty("Group Name", String.class, null);
          // list.setVisibleColumns(new Object[] { "Type Name" });
          for (int i = 0; i < groupArray.size(); i++) {
            Group group = groupArray.get(i);
            groupsres.addItem(
                new Object[] { Integer.toString(group.getGroupID()),
                    group.getGroupName() }, i);
            groupnumberres++;
          }
        } catch (DAOException e1) {
          // TODO Auto-generated catch block
          e1.printStackTrace();
        }
        groupsres.setVisibleColumns(new Object[] {"Group Name"});
        // Options
        resName.setMaxLength(45);
        resDescription.setMaxLength(250);
        resDescription.setRows(6);
        resDescription.setColumns(25);

        checb.setValue(true);
        groupsres.setSelectable(true);
        groupsres.setMultiSelect(true);
        groupsres.setHeight("300px");
        groupsres.setWidth("350px");
        groupsres.select(groupsres.firstItemId());
        groupsres.setNullSelectionAllowed(false);

        resLayout.setSizeFull();
        resLayout.setSpacing(true);

       
       
        HorizontalLayout nameLayout = new HorizontalLayout();
        nameLayout.addComponent(resLabe);
        resLayout.addComponent(nameLayout);
        resLayout.setComponentAlignment(nameLayout, Alignment.MIDDLE_RIGHT);
        HorizontalLayout layout1 = new  HorizontalLayout();
        layout1.addComponent(resName);
        layout1.addComponent(checb);
        layout1.setSpacing(true);
        resLayout.addComponent(layout1);


        HorizontalLayout descriptLayout = new HorizontalLayout();
        descriptLayout.addComponent(descriptionLabelres);
        resLayout.addComponent(descriptLayout);
        resLayout.setComponentAlignment(descriptLayout, Alignment.MIDDLE_RIGHT);
        resLayout.addComponent(resDescription);
        resLayout.setHeight("200");

        HorizontalLayout horizont = new HorizontalLayout();
        horizont.addComponent(resLayout);
        horizont.setComponentAlignment(resLayout, Alignment.MIDDLE_CENTER);
        horizont.addComponent(list);
        horizont.setSpacing(true);
       
        HorizontalLayout horizontlay = new HorizontalLayout();
        horizontlay.addComponent(horizont);
        horizontlay.setComponentAlignment(horizont, Alignment.MIDDLE_CENTER);
        horizontlay.setSizeFull();
       
        resPanel.addComponent(horizontlay);
       
        HorizontalLayout groupLayout = new HorizontalLayout();
        //groupLayout.addComponent(list);
        groupLayout.addComponent(groupsres);
        groupLayout.addComponent(editGroupRes);
        groupLayout.setSpacing(true);
        HorizontalLayout groupLayoutLayout = new HorizontalLayout();
        groupLayoutLayout.addComponent(groupLayout);
        groupLayoutLayout.setComponentAlignment(groupLayout,
            Alignment.MIDDLE_CENTER);
        groupLayoutLayout.setSizeFull();
        groupLayoutLayout.setSpacing(true);
        resPanel.addComponent(groupLayoutLayout);

        HorizontalLayout buttonLayout = new HorizontalLayout();
        buttonLayout.addComponent(save);
        HorizontalLayout buttonLayoutLayout = new HorizontalLayout();
        buttonLayoutLayout.addComponent(buttonLayout);
        buttonLayoutLayout.setComponentAlignment(buttonLayout,
            Alignment.MIDDLE_CENTER);
        buttonLayoutLayout.setSizeFull();
        buttonLayoutLayout.setHeight("35");

        save.setWidth("150");
        resPanel.addComponent(buttonLayoutLayout);

        save.addListener(new ClickListener() {
          /**
           *
           */
          private static final long serialVersionUID = 1L;

          public void buttonClick(ClickEvent event) {

            if ((resName.toString().length() != 0)
                && (Integer.parseInt(list.getItem(list.getValue())
                    .getItemProperty("Type ID").toString()) != 0)) {
              resource.setResourceTypeID(Integer.parseInt(list
                  .getItem(list.getValue())
                  .getItemProperty("Type ID").toString()));
              resource.setActive(checb.booleanValue());
              resource.setResourceName(resName.toString());
              resource.setDescription(resDescription.toString());

              try {
                ResourceDAO resDao = df.getResourceDAO();
                resDao.insertResource(resource);
                for (int i = 0; i <= groupnumber; i++) {

                  if (groups.isSelected(i)) {

                    Group gr = new Group();
                    gr.setGroupID((Integer.parseInt(groups
                        .getItem(i).getItemProperty("Group ID")
                        .toString())));
                    gr.setGroupName(groups.getItem(i)
                        .getItemProperty("Group Name")
                        .toString());
                    df.getResourceDAO().addResourceToGroup(
                        resource, gr);

                  }
                }
                me.getApplication().getMainWindow()
                    .setContent(new HubPageUI(u));
              } catch (ResourceNameExistsException e) {
                e.printStackTrace();
                me.getApplication().getMainWindow()
                    .showNotification("Database Error!");
              } catch (DAOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
              }

            } else {
              System.out.println("Ures!");
              me.getApplication().getMainWindow()
                  .showNotification("Data error!");
            }
          }
        });

        editGroupRes.addListener(new ClickListener() {

          /**
           *
           */
          private static final long serialVersionUID = -4241011703441499400L;

          public void buttonClick(ClickEvent event) {
            final Window w = new Window();
            final TextField newGroup = new TextField();
            Button saveGroup = new Button("Save");
            w.addComponent(newGroup);
            w.addComponent(saveGroup);
            me.getApplication().getMainWindow().addWindow(w);
           
            saveGroup.addListener(new ClickListener() {
              /**
               *
               */
              private static final long serialVersionUID = -8351414499108265541L;

              public void buttonClick(ClickEvent event) {
                Group gr = new Group();
                gr.setGroupName(newGroup.getValue().toString());
                try {
                  df.getGroupDAO().insertGroup(gr);
                } catch (GroupExistsException e) {
                  // TODO Auto-generated catch block
                  e.printStackTrace();
    View Full Code Here

    Examples of edu.uchicago.grouperabi.Group

        assertEquals(stemName, gce.getStem().getName());
      }

      @Test
      public void testGetGroup() throws GrouperABIException{
        Group myGroup = gce.findGroup("uc:Reference:adhoc:provextend");
        assertEquals("uc:Reference:adhoc:provextend", myGroup.getName());

        ArrayList<Membership> members = myGroup.getMembershipInfo();
        for(Membership mship: members){
          System.out.println(mship.getSubject().getName()+" "+mship.getDisabledTime());
        }
      }
    View Full Code Here

    Examples of es.ipsa.atril.sec.user.Group

      }
     
      public void grant(AtrilSession oSes, Document... aDocs)
        throws AuthorizationException,ElementNotFoundException {
        AuthorizationManager oAum = oSes.getAuthorizationManager();
        Group oGuestsGrp = getGuestsGroup(oAum);
        Group oUsersGrp = getUsersGroup(oAum);
        Group oOpersGrp = Zesped.getOperatorsGroup(oAum);
        Group oAdminsGrp = getAdminsGroup(oAum);
        UsersGroup oGgrp = new UsersGroup(oAum, oGuestsGrp);
        UsersGroup oUgrp = new UsersGroup(oAum, oUsersGrp);
        UsersGroup oOgrp = new UsersGroup(oAum, oOpersGrp);
        UsersGroup oAgrp = new UsersGroup(oAum, oAdminsGrp);   
        for (Document oDoc : aDocs) {
    View Full Code Here

    Examples of evolaris.framework.um.datamodel.Group

       *      javax.servlet.http.HttpServletResponse)
       */
      public ActionForward enter(ActionMapping mapping, ActionForm form, HttpServletRequest req, HttpServletResponse resp) {
        HttpInteractionEnterOrEditForm f = (HttpInteractionEnterOrEditForm)form;
        f.setSortLabel(sortLabelProposalFromSession(req));
        Group group = groupFromSession(req);
        checkAccessRights(req, group);
        req.getSession().setAttribute("enterOrEdit", "enter");
        req.getSession().setAttribute("formActionPath", req.getParameter("formActionPath"));
        req.getSession().setAttribute("templates",getSortedCommandEntries(req));
        return mapping.findForward("enter");
    View Full Code Here

    Examples of facebook4j.Group

                JSONArray list = json.getJSONArray("data");
                final int size = list.length();
                ResponseList<Group> groups = new ResponseListImpl<Group>(size, json);
                for (int i = 0; i < size; i++) {
                    JSONObject groupJSONObject = list.getJSONObject(i);
                    Group group = new GroupJSONImpl(groupJSONObject);
                    if (conf.isJSONStoreEnabled()) {
                        DataObjectFactoryUtil.registerJSONObject(group, groupJSONObject);
                    }
                    groups.add(group);
                }
    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.