Operation Type Commands (Template Language)
Commands for objects of Operation type defined in Software Ideas Modeler Template Language.
Command Name | Result Type | Description |
---|---|---|
Uid | String | Returns the internal unique ID of the element. |
CustomID | String | Returns the user-defined ID of the operation. |
Visibility | String | Returns the visibility of the operation. |
Name | String | Returns the name of the operation. |
ReturnType | String | Returns the return type of the operation. |
Documentation | String | Returns the documentation of the operation as formatted text. (It can be used only in documentation templates.) |
HtmlDocumentation | String | Returns the documentation of the operation in HTML format. |
SourceCodeBody | String | Returns the source code body of the operation. |
HasReturnType | Boolean | Returns true if the operation has defined the return type. |
IsAbstract | Boolean | Returns true if the operation is abstract. |
IsStatic | Boolean | Returns true if the operation is static. |
IsVirtual | Boolean | Returns true if the operation is virtual. |
IsOverridden | Boolean | Returns true if the operation is overridden. |
IsOverloaded | Boolean | Returns true if the operation is overloaded. |
Parameters | Enumeration | Enumerates all parameters of the operation. The default variable used for the enumeration is Parameter. |
ParameterString | String | Returns the parameters of the operation in a string. |
DocumentationLines | Enumeration | Enumerates all lines of the documentation for the operation. The default variable used for the enumeration is DocumentationLine. |
New Comment