Class: SAXMachine::SAXConfig::ElementConfig
- Inherits:
-
Object
- Object
- SAXMachine::SAXConfig::ElementConfig
- Defined in:
- lib/sax-machine/sax_element_config.rb
Instance Attribute Summary collapse
-
#collection ⇒ Object
readonly
Returns the value of attribute collection.
-
#data_class ⇒ Object
readonly
Returns the value of attribute data_class.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#setter ⇒ Object
readonly
Returns the value of attribute setter.
Instance Method Summary collapse
- #attrs_match?(attrs) ⇒ Boolean
- #collection? ⇒ Boolean
- #column ⇒ Object
- #has_value_and_attrs_match?(attrs) ⇒ Boolean
-
#initialize(name, options) ⇒ ElementConfig
constructor
A new instance of ElementConfig.
- #required? ⇒ Boolean
- #value_from_attrs(attrs) ⇒ Object
Constructor Details
#initialize(name, options) ⇒ ElementConfig
Returns a new instance of ElementConfig.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/sax-machine/sax_element_config.rb', line 7 def initialize(name, ) @name = name.to_s if .has_key?(:with) # for faster comparisons later @with = [:with].to_a.flatten.collect {|o| o.to_s} else @with = nil end if .has_key?(:value) @value = [:value].to_s else @value = nil end @as = [:as] @collection = [:collection] if @collection @setter = "add_#{[:as]}" else @setter = "#{@as}=" end @data_class = [:class] @required = [:required] end |
Instance Attribute Details
#collection ⇒ Object (readonly)
Returns the value of attribute collection.
5 6 7 |
# File 'lib/sax-machine/sax_element_config.rb', line 5 def collection @collection end |
#data_class ⇒ Object (readonly)
Returns the value of attribute data_class.
5 6 7 |
# File 'lib/sax-machine/sax_element_config.rb', line 5 def data_class @data_class end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
5 6 7 |
# File 'lib/sax-machine/sax_element_config.rb', line 5 def name @name end |
#setter ⇒ Object (readonly)
Returns the value of attribute setter.
5 6 7 |
# File 'lib/sax-machine/sax_element_config.rb', line 5 def setter @setter end |
Instance Method Details
#attrs_match?(attrs) ⇒ Boolean
47 48 49 50 51 52 53 |
# File 'lib/sax-machine/sax_element_config.rb', line 47 def attrs_match?(attrs) if @with @with == (@with & attrs) else true end end |
#collection? ⇒ Boolean
59 60 61 |
# File 'lib/sax-machine/sax_element_config.rb', line 59 def collection? @collection end |
#column ⇒ Object
35 36 37 |
# File 'lib/sax-machine/sax_element_config.rb', line 35 def column @as || @name.to_sym end |
#has_value_and_attrs_match?(attrs) ⇒ Boolean
55 56 57 |
# File 'lib/sax-machine/sax_element_config.rb', line 55 def has_value_and_attrs_match?(attrs) !@value.nil? && attrs_match?(attrs) end |
#required? ⇒ Boolean
39 40 41 |
# File 'lib/sax-machine/sax_element_config.rb', line 39 def required? @required end |
#value_from_attrs(attrs) ⇒ Object
43 44 45 |
# File 'lib/sax-machine/sax_element_config.rb', line 43 def value_from_attrs(attrs) attrs.index(@value) ? attrs[attrs.index(@value) + 1] : nil end |