class Lutaml::Uml::Node::Method
Attributes
abstract[R]
arguments[R]
Public Instance Methods
abstract=(value)
click to toggle source
# File lib/lutaml/uml/node/method.rb, line 15 def abstract=(value) @abstract = !!value end
arguments=(value)
click to toggle source
# File lib/lutaml/uml/node/method.rb, line 21 def arguments=(value) @arguments = value.to_a.map do |attributes| MethodArgument.new(attributes) end end