2

I just want to know how can I add a Type (for example String) to a Operation in Papyrus Class diagram.

Because if I drag a Operation form the palette to the Classe diagram, the Operation will be without any Return Type. (I want to show for example the Function String getName() in Class Diagram)

Thanks a lot

Regards

4

1 回答 1

3

澄清 user2019510 所说的:

拥有的参数可以是:

  • 方法的方法参数/参数(例如namein aPerson.setName(String name))您可以命名这些和/或设置类型。
  • 返回值(如int anArray.size())。

“Direction”指定了它的意图:它是输入参数、输出参数、“inout”参数(将其传入,得到不同的结果输出——对于 Fortran 非常有用),还是返回值。

您可以命名参数或省略名称。对于返回值,命名 Owned 参数对我来说没有意义,所以我省略了它的名称。

希望这对某人有帮助!

于 2013-07-26T22:10:54.083 回答