Sha256: 32c5022837b5b3e24c1794a2abd441b5a656dbd1225c9f09debd4eb3bfbd36f1

Contents?: true

Size: 351 Bytes

Versions: 46

Compression:

Stored size: 351 Bytes

Contents

# frozen_string_literal: true

##
## Behaviour metamodel
##
module Lutaml
  module Uml
    class Connector < TopElement
      attr_accessor :kind, :connector_end

      def initialize
        @name = nil
        @xmi_id = nil
        @xmi_uuid = nil
        @connector_end = []
        @namespace = nil
        @kind = nil
      end
    end
  end
end

Version data entries

46 entries across 46 versions & 2 rubygems

Version Path
lutaml-uml-0.2.5 lib/lutaml/uml/connector.rb
lutaml-uml-0.2.4 lib/lutaml/uml/connector.rb
lutaml-uml-0.2.3 lib/lutaml/uml/connector.rb
lutaml-uml-0.2.2 lib/lutaml/uml/connector.rb
lutaml-uml-0.2.1 lib/lutaml/uml/connector.rb
lutaml-uml-0.2.0 lib/lutaml/uml/connector.rb