class IocRb::BeanMetadata::Attribute

Attributes

name[R]
ref[R]

Public Class Methods

new(name, options) click to toggle source
# File lib/ioc_rb/bean_metadata.rb, line 50
def initialize(name, options)
  IocRb::ArgsValidator.has_key!(options, :ref)
  @name = name
  @ref  = options[:ref]
end