class Xumlidot::Types::InheritedModule

Attributes

type[R]

Public Class Methods

new(name, namespace = nil) click to toggle source
Calls superclass method
# File lib/xumlidot/types/inherited_module.rb, line 10
def initialize(name, namespace = nil)
  super
  @has_root = false
  @type = nil
end

Public Instance Methods

type=(value) click to toggle source
# File lib/xumlidot/types/inherited_module.rb, line 16
def type=(value)
  case value
  when :extend, :prepend, :include
    @type = value
  end
end