Examples of removeAction()


Examples of net.java.sip.communicator.impl.notification.EventNotification.removeAction()

        Action action = notification.getAction(actionType);
       
        if(action == null)
            return;

        notification.removeAction(actionType);
       
        saveNotification(
            eventType,
            actionType,
            action.getActionHandler(),
View Full Code Here

Examples of org.broadleafcommerce.openadmin.web.form.entity.EntityForm.removeAction()

        EntityForm entityForm = formService.createEntityForm(collectionMetadata, sectionCrumbs);
        entityForm.setCeilingEntityClassname(ppr.getCeilingEntityClassname());
        entityForm.setEntityType(ppr.getCeilingEntityClassname());
        formService.removeNonApplicableFields(collectionMetadata, entityForm, ppr.getCeilingEntityClassname());

        entityForm.removeAction(DefaultEntityFormActions.DELETE);

        removeRequiredValidation(entityForm);
       
        model.addAttribute("entityForm", entityForm);
        model.addAttribute("viewType", "modal/simpleAddEntity");
View Full Code Here

Examples of org.broadleafcommerce.openadmin.web.form.entity.EntityForm.removeAction()

        Map<String, DynamicResultSet> subRecordsMap = service.getRecordsForAllSubCollections(ppr, entity, sectionCrumbs);
       
        // Build the entity form for the modal that includes the subcollections
        EntityForm entityForm = formService.createEntityForm(collectionMetadata, entity, subRecordsMap, sectionCrumbs);
       
        entityForm.removeAction(DefaultEntityFormActions.DELETE);
       
        // Ensure that operations on the Sku subcollections go to the proper URL
        for (ListGrid lg : entityForm.getAllListGrids()) {
            lg.setSectionKey("org.broadleafcommerce.core.catalog.domain.Sku");
            lg.setSectionCrumbs(sectionCrumbs);
View Full Code Here

Examples of org.openbp.jaspira.action.ActionMgr.removeAction()

    // Unregister the actions of the event modules
    if (eventActionNames != null)
    {
      for (Iterator it = eventActionNames.iterator(); it.hasNext();)
      {
        actionMgr.removeAction((String) it.next());
      }
    }

    // Unregister the user actions
    actionMgr.removeAllActions(getExternalActions());
View Full Code Here

Examples of org.openquark.samples.bam.model.MonitorJobDescription.removeAction()

        if (jobDescription != null) {
            if (confirmAction("Are you sure you want to delete this action?")) {
                ActionDescription actionDescription = getSelectedActionDescription ();
   
                if (actionDescription != null) {
                    jobDescription.removeAction (actionDescription);
                }
            }
        }
    }
View Full Code Here

Examples of org.rssowl.core.persist.ISearchFilter.removeAction()

      savedFilter.setName("Disabled Filter");
      savedFilter.setEnabled(false);
      savedFilter.setOrder(1);

      List<IFilterAction> actions = savedFilter.getActions();
      savedFilter.removeAction(actions.get(0));
      actions.get(1).setData(new Long[] { 3l, 2l, 1l });
      IFilterAction action = fTypesFactory.createFilterAction("org.rssowl.ActionId3");
      action.setData(200);
      savedFilter.addAction(action);
View Full Code Here

Examples of org.rssowl.core.persist.ISearchFilter.removeAction()

      savedFilter.setName("Disabled Filter");
      savedFilter.setEnabled(false);
      savedFilter.setOrder(1);

      List<IFilterAction> actions = savedFilter.getActions();
      savedFilter.removeAction(actions.get(0));
      actions.get(1).setData(new Long[] { 3l, 2l, 1l });
      IFilterAction action = fTypesFactory.createFilterAction("org.rssowl.ActionId3");
      action.setData(200);
      savedFilter.addAction(action);
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.