Examples of delegate()

  • org.sgx.yuigwt.yui.widget.datatable.DataTable.delegate()
    Pass through to delegate() called from the contentBox. @param type the event type to delegate @param fn the callback function to execute. This function will be provided the event object for the delegated event. @param spec a selector that must match the target of the event or a function to test target and its parents for a match @return
  • org.uengine.kernel.HumanActivity.delegate()
  • st.redline.classloader.SmalltalkClassLoader.delegate()

  • Examples of org.exoplatform.services.jcr.impl.dataflow.TransientValueData.delegate()

                                  }

                                  values.add(pvd);
                               }

                               tvd.delegate(pvd);
                            }
                            else
                            {
                               values.add(vd);
                            }
    View Full Code Here

    Examples of org.exoplatform.services.jcr.impl.dataflow.TransientValueData.delegate()

                TransientPropertyData propertyData = (TransientPropertyData)itemData;
                TransientValueData tvd =
                   (TransientValueData)(propertyData.getValues().get(listFixupStream.get(i).getValueDataId()));

                // re-init the value
                tvd.delegate(new TransientValueData(tvd.getOrderNumber(), null, null, listFile.get(i), fileCleaner, -1,
                   null, true));
             }
          }
       }
    View Full Code Here

    Examples of org.globus.workspace.client_core.actions.Delegate.delegate()

                }

                return; // *** EARLY RETURN ***
            }

            final EndpointReferenceType epr = delegate.delegate();
           
            //this.delegationWasPerformed = true;

            final OptionalParameters_Type opt = this.d.optionalParameters;
            if (opt == null) {
    View Full Code Here

    Examples of org.jboss.weld.bean.builtin.BeanManagerProxy.delegate()

        }

        public ELContext createELContext(BeanManager beanManager) {
            if (beanManager instanceof BeanManagerProxy) {
                BeanManagerProxy proxy = (BeanManagerProxy) beanManager;
                beanManager = proxy.delegate();
            }
            if (beanManager instanceof BeanManagerImpl) {
                return createELContext((BeanManagerImpl) beanManager);
            } else {
                throw new IllegalStateException("Wrong manager");
    View Full Code Here

    Examples of org.jboss.weld.bean.builtin.BeanManagerProxy.delegate()

        }

        protected <T> EnhancedAnnotatedType<T> getEnhancedAnnotatedType(BeanManager manager, Class<T> javaClass) {
            if (manager instanceof BeanManagerProxy) {
                BeanManagerProxy proxy = (BeanManagerProxy) manager;
                manager = proxy.delegate();
            }
            if (manager instanceof BeanManagerImpl) {
                BeanManagerImpl bmi = (BeanManagerImpl) manager;
                return ((BeanManagerImpl) manager).createEnhancedAnnotatedType(javaClass);
            } else {
    View Full Code Here

    Examples of org.jboss.weld.util.ForwardingBeanManager.delegate()

        @Override
        @SuppressWarnings("EQ_CHECK_FOR_OPERAND_NOT_COMPATIBLE_WITH_THIS")
        public boolean equals(Object obj) {
            if (obj instanceof ForwardingBeanManager) {
                ForwardingBeanManager proxy = (ForwardingBeanManager) obj;
                obj = proxy.delegate();
            }
            if (obj instanceof BeanManagerImpl) {
                BeanManagerImpl that = (BeanManagerImpl) obj;
                return this.getId().equals(that.getId());
            } else {
    View Full Code Here

    Examples of org.ofbiz.workflow.WfAssignment.delegate()

            }

            if (fromAssign == null) {
                fromAssign = WfFactory.getWfAssignment(delegator, workEffortId, fromPartyId, fromRoleTypeId, fromFromDate);
            }
            fromAssign.delegate();

            // check for a restartOnDelegate
            WfActivity newActivity = null;
            if (activity.getDefinitionObject().getBoolean("restartOnDelegate").booleanValue()) {
                // this only applies to running single assignment activities
    View Full Code Here

    Examples of org.ofbiz.workflow.WfAssignment.delegate()

                    Debug.logVerbose("[WfAssignment.accept] : setting other assignments to delegated status.", module);
                    Iterator<WfAssignment> ai = activity.getIteratorAssignment();

                    while (ai.hasNext()) {
                        WfAssignment a = ai.next();
                        if (!this.isEqual(a)) a.delegate();
                    }
                }
            }
            // set this assignment as accepted
            changeStatus("CAL_ACCEPTED");
    View Full Code Here

    Examples of org.ofbiz.workflow.WfAssignment.delegate()

                    Debug.logVerbose("[WfAssignment.accept] : setting other assignments to delegated status.", module);
                    Iterator ai = activity.getIteratorAssignment();

                    while (ai.hasNext()) {
                        WfAssignment a = (WfAssignment) ai.next();
                        if (!this.isEqual(a)) a.delegate();
                    }
                }
            }
            // set this assignment as accepted
            changeStatus("CAL_ACCEPTED");
    View Full Code Here

    Examples of org.ofbiz.workflow.WfAssignment.delegate()

            }

            if (fromAssign == null) {
                fromAssign = WfFactory.getWfAssignment(delegator, workEffortId, fromPartyId, fromRoleTypeId, fromFromDate);
            }
            fromAssign.delegate();

            // check for a restartOnDelegate
            WfActivity newActivity = null;
            if (activity.getDefinitionObject().getBoolean("restartOnDelegate").booleanValue()) {
                // this only applies to running single assignment activities
    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.