Class: GEDCOM_DATE_PARSER::GEDStateEntry
- Inherits:
-
Object
- Object
- GEDCOM_DATE_PARSER::GEDStateEntry
- Defined in:
- lib/gedcom_ruby/date_parser.rb
Instance Attribute Summary collapse
-
#action ⇒ Object
Returns the value of attribute action.
-
#input ⇒ Object
Returns the value of attribute input.
-
#nextState ⇒ Object
Returns the value of attribute nextState.
-
#state ⇒ Object
Returns the value of attribute state.
Instance Method Summary collapse
-
#initialize(st, ip, ns, a) ⇒ GEDStateEntry
constructor
A new instance of GEDStateEntry.
Constructor Details
#initialize(st, ip, ns, a) ⇒ GEDStateEntry
Returns a new instance of GEDStateEntry.
310 311 312 313 314 315 |
# File 'lib/gedcom_ruby/date_parser.rb', line 310 def initialize(st, ip, ns, a) @state = st @input = ip @nextState = ns @action = a end |
Instance Attribute Details
#action ⇒ Object
Returns the value of attribute action.
309 310 311 |
# File 'lib/gedcom_ruby/date_parser.rb', line 309 def action @action end |
#input ⇒ Object
Returns the value of attribute input.
309 310 311 |
# File 'lib/gedcom_ruby/date_parser.rb', line 309 def input @input end |
#nextState ⇒ Object
Returns the value of attribute nextState.
309 310 311 |
# File 'lib/gedcom_ruby/date_parser.rb', line 309 def nextState @nextState end |
#state ⇒ Object
Returns the value of attribute state.
309 310 311 |
# File 'lib/gedcom_ruby/date_parser.rb', line 309 def state @state end |