Examples of invokeAction()


Examples of ariba.ui.wizard.core.Wizard.invokeAction()

        WizardFrame frame,
        WizardAction wizardAction,
        AWRequestContext requestContext)
    {
        Wizard wizard = frame.getWizard();
        WizardActionTarget target = wizard.invokeAction(wizardAction, requestContext);
        AWResponseGenerating targetComponent = null;
        if (target instanceof UrlActionTarget) {
            targetComponent = generateResponseForUrlTarget(
                frame, (UrlActionTarget)target, requestContext);
        }
View Full Code Here

Examples of com.projity.field.Field.invokeAction()

  }
  private void invokeFieldAction(String action, Object obj) {
    Field f = FieldDictionary.getInstance().getActionField(ACTION_DOCUMENTS);
    if (f != null)
      f.invokeAction(obj);

  }
  public class CalendarOptionsAction extends MenuActionsMap.GlobalMenuAction {
    private static final long serialVersionUID = 1L;
    public void actionPerformed(ActionEvent arg0) {
View Full Code Here

Examples of com.projity.field.Field.invokeAction()

  }
  private void invokeFieldAction(String action, Object obj) {
    Field f = FieldDictionary.getInstance().getActionField(ACTION_DOCUMENTS);
    if (f != null)
      f.invokeAction(obj);

  }
  public class CalendarOptionsAction extends MenuActionsMap.GlobalMenuAction {
    private static final long serialVersionUID = 1L;
    public void actionPerformed(ActionEvent arg0) {
View Full Code Here

Examples of com.webobjects.appserver.WOApplication.invokeAction()

      }

      aContext._setPageChanged(false);
      if (aSenderID != null)
      {
        WOActionResults anActionResults = anApplication.invokeAction(aRequest, aContext);

        if ((anActionResults == null) || ((anActionResults instanceof WOComponent)))
        {
          WOComponent aResultComponent = (WOComponent)anActionResults;
          if ((aResultComponent != null) && (aResultComponent.context() != aContext)) {
View Full Code Here

Examples of com.webobjects.appserver.WOElement.invokeAction()

      WOComponent component = wocontext.component();
      WOElement template = template(component);
      WOActionResults result;
      if(template != null) {
        wocontext._setCurrentComponent(component.parent());
        result = template.invokeAction(worequest, wocontext);
        wocontext._setCurrentComponent(component);
      } else {
        result = _defaultTemplate.invokeAction(worequest, wocontext);
      }
      return result;
View Full Code Here

Examples of com.webobjects.appserver.WOElement.invokeAction()

    paramWOContext.appendElementIDComponent(id);

    WOElement localWOElement = _realComponentWithName(name, id, paramWOContext);

    WOActionResults localWOActionResults = localWOElement.invokeAction(paramWORequest, paramWOContext);

    paramWOContext.deleteLastElementIDComponent();

    return localWOActionResults;
  }
View Full Code Here

Examples of com.webobjects.appserver.WOElement.invokeAction()

  @Override
  public WOActionResults invokeAction(WORequest worequest, WOContext wocontext) {
    String s = _elementNameInContext(wocontext);
    wocontext.appendElementIDComponent(s.replace('.', '_'));
    WOElement woelement = _realComponentWithName(s, wocontext);
    WOActionResults woactionresults = woelement.invokeAction(worequest, wocontext);
    if (woactionresults != null) {
      WOComponent nextComponent;
      if (woactionresults instanceof WOComponent) {
        nextComponent = (WOComponent) woactionresults;
      }
View Full Code Here

Examples of org.apache.isis.viewer.json.applib.domainobjects.DomainObjectResource.invokeAction()

        final DomainObjectResource domainObjectResource = client.getDomainObjectResource();

        final JsonRepresentation body = JsonRepresentation.newArray();

        // when
        final Response actionInvokeResp = domainObjectResource.invokeAction("OID:1", "list", body.asInputStream());
        final RestfulResponse<ScalarValueRepresentation> actionInvokeJsonResp = RestfulResponse.ofT(actionInvokeResp);
        assertThat(actionInvokeJsonResp.getStatus().getFamily(), is(Family.SUCCESSFUL));

        // then
        final ScalarValueRepresentation actionInvokeRepr = actionInvokeJsonResp.getEntity();
View Full Code Here

Examples of org.eclipse.swt.custom.StyledText.invokeAction()

      // auto scroll
      Rectangle ca = st.getClientArea();
      int margin = st.getLineHeight();

      if (pt.y < margin) { // up
        st.invokeAction(ST.LINE_UP);
      } else if (pt.y > ca.height - margin) { // down
        st.invokeAction(ST.LINE_DOWN);
      }

      // draw insertion point
View Full Code Here

Examples of org.eclipse.swt.custom.StyledText.invokeAction()

      int margin = st.getLineHeight();

      if (pt.y < margin) { // up
        st.invokeAction(ST.LINE_UP);
      } else if (pt.y > ca.height - margin) { // down
        st.invokeAction(ST.LINE_DOWN);
      }

      // draw insertion point
      int offset = getDropOffset(textEditor, pt);
      if (offset != st.getCaretOffset()) {
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.