Class: SAXMachine::SAXConfig::CollectionConfig

Inherits:
Object
  • Object
show all
Defined in:
lib/lazy-sax-machine/sax_collection_config.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, options) ⇒ CollectionConfig

Returns a new instance of CollectionConfig.



7
8
9
10
11
12
13
14
15
# File 'lib/lazy-sax-machine/sax_collection_config.rb', line 7

def initialize(name, options)
  @name   = name.to_s
  @class  = options[:class]
  @as     = options[:as].to_s
  
  if options.has_key?(:with)
    @with = options[:with].to_a.map {|(k,v)| [k.to_s, v.to_s] }
  end
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



5
6
7
# File 'lib/lazy-sax-machine/sax_collection_config.rb', line 5

def name
  @name
end

Instance Method Details

#accessorObject



17
18
19
# File 'lib/lazy-sax-machine/sax_collection_config.rb', line 17

def accessor
  as
end

#attrs_match?(attrs) ⇒ Boolean

Returns:

  • (Boolean)


21
22
23
24
25
26
27
28
29
# File 'lib/lazy-sax-machine/sax_collection_config.rb', line 21

def attrs_match?(attrs)
  return true unless @with

  @with.all? do |k,v|
    if pair = attrs.assoc(k)
      pair.last == v
    end
  end
end

#data_classObject



31
32
33
# File 'lib/lazy-sax-machine/sax_collection_config.rb', line 31

def data_class
  @class || @name
end