class Lutaml::Sysml::Requirement
Attributes
base_class[RW]
derived_from[RW]
id[RW]
refined_by[RW]
satisfied_by[RW]
text[RW]
traced_to[RW]
Public Class Methods
new()
click to toggle source
# File lib/lutaml/sysml/requirement.rb, line 5 def initialize @xmi_id = nil @id = nil @nested_classifier = [] @stereotype = [] @namespace = nil end
Public Instance Methods
full_name()
click to toggle source
# File lib/lutaml/sysml/requirement.rb, line 18 def full_name if base_class != nil and base_class.name != nil return base_class.full_name end return nil end
name()
click to toggle source
# File lib/lutaml/sysml/requirement.rb, line 12 def name if base_class != nil and base_class.name != nil return base_class.name end return nil end