lib/lutaml/uml/dependency.rb in lutaml-uml-0.1.0 vs lib/lutaml/uml/dependency.rb in lutaml-uml-0.2.0
- old
+ new
@@ -1,18 +1,21 @@
+# frozen_string_literal: true
+
##
## Behaviour metamodel
##
-module Lutaml::Uml
+module Lutaml
+ module Uml
+ class Dependency < TopElement
+ attr_accessor :client, :supplier
-class Dependency < TopElement
- attr_accessor :client, :supplier
- def initialize
- @name = nil
- @xmi_id = nil
- @xmi_uuid = nil
- @client = []
- @supplier = []
- @namespace = nil
- end
-end
-
+ def initialize
+ @name = nil
+ @xmi_id = nil
+ @xmi_uuid = nil
+ @client = []
+ @supplier = []
+ @namespace = nil
+ end
+ end
+ end
end