class RbUMLMethodArgument
Attributes
kind[R]
name[R]
Public Class Methods
new(name, kind=nil)
click to toggle source
# File lib/rbuml/models.rb, line 89 def initialize(name, kind=nil) @name = name @kind = kind end
Public Instance Methods
dot_label()
click to toggle source
# File lib/rbuml/dot.rb, line 98 def dot_label @kind ? "#{@name} : #{@kind}" : "#{@name}" end