IBM Support

How to use the API to access the modified operation arguments displayed in a call operation preview in Rhapsody

Question & Answer


Question

How do you use the API to access the operation arguments displayed in a call operation preview in IBM Rational Rhapsody?

Cause

I wish to access the modified argument values displayed in the call operation preview which differs from the actual value of the operation's arguments

Answer

To access the modified argument values from the Call Operation preview:


    IRPApplication app = RhapsodyAppServer.getActiveRhapsodyApplication();
    IRPCallOperation callop = (IRPCallOperation)app.getSelectedElement();
    IRPAction action = callop.getTheEntryAction();
    if (action instanceof IRPSendAction)
    {
    IRPSendAction sendAction = (IRPSendAction)action;
    List<String> lArgs = sendAction.getArgVals().toList();
    for (String arg : lArgs) {
    System.out.println(arg);
    }
    }


To access the actual operation values from the context of the call operation:

    IRPApplication app = RhapsodyAppServer.getActiveRhapsodyApplication();
    IRPCallOperation callop = (IRPCallOperation)app.getSelectedElement();
    List<IRPArgument> lArgs = callop.getOperation().getArguments().toList();
    for (IRPArgument arg : lArgs) {
      System.out.println(arg.getDefaultValue());
    }




    Disclaimer

    All source code and/or binaries attached to this document are referred to here as "the Program". IBM is not providing program services of any kind for the Program. IBM is providing the Program on an "AS IS" basis without warranty of any kind. IBM WILL NOT BE LIABLE FOR ANY ACTUAL, DIRECT, SPECIAL, INCIDENTAL, OR INDIRECT DAMAGES OR FOR ANY ECONOMIC CONSEQUENTIAL DAMAGES (INCLUDING LOST PROFITS OR SAVINGS), EVEN IF IBM, OR ITS RESELLER, HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

[{"Product":{"code":"SSB2MU","label":"IBM Engineering Systems Design Rhapsody"},"Business Unit":{"code":"BU059","label":"IBM Software w\/o TPS"},"Component":"General Information","Platform":[{"code":"PF033","label":"Windows"}],"Version":"8.0;8.0.1;8.0.2;8.0.3;8.0.4;8.0.5;8.0.6;8.1;8.1.1;8.1.2;8.1.2.1;8.1.3;8.1.4;8.1.5","Edition":"","Line of Business":{"code":"LOB59","label":"Sustainability Software"}}]

Product Synonym

Rational Rhapsody

Document Information

Modified date:
27 May 2022

UID

swg21986756