Class: REXML::Validation::Event
- Defined in:
- lib/extensions/rexml/rexml/validation/validation.rb
Instance Attribute Summary collapse
-
#event_arg ⇒ Object
Returns the value of attribute event_arg.
-
#event_type ⇒ Object
readonly
Returns the value of attribute event_type.
Instance Method Summary collapse
- #==(other) ⇒ Object
- #done? ⇒ Boolean
-
#initialize(event_type, event_arg = nil) ⇒ Event
constructor
A new instance of Event.
- #inspect ⇒ Object
- #matches?(event) ⇒ Boolean
- #single? ⇒ Boolean
- #to_s ⇒ Object
Constructor Details
#initialize(event_type, event_arg = nil) ⇒ Event
Returns a new instance of Event.
80 81 82 83 |
# File 'lib/extensions/rexml/rexml/validation/validation.rb', line 80 def initialize(event_type, event_arg=nil ) @event_type = event_type @event_arg = event_arg end |
Instance Attribute Details
#event_arg ⇒ Object
Returns the value of attribute event_arg.
86 87 88 |
# File 'lib/extensions/rexml/rexml/validation/validation.rb', line 86 def event_arg @event_arg end |
#event_type ⇒ Object (readonly)
Returns the value of attribute event_type.
85 86 87 |
# File 'lib/extensions/rexml/rexml/validation/validation.rb', line 85 def event_type @event_type end |
Instance Method Details
#==(other) ⇒ Object
141 142 143 144 |
# File 'lib/extensions/rexml/rexml/validation/validation.rb', line 141 def ==( other ) return false unless other.kind_of? Event @event_type == other.event_type and @event_arg == other.event_arg end |
#done? ⇒ Boolean
88 89 90 |
# File 'lib/extensions/rexml/rexml/validation/validation.rb', line 88 def done? @done end |
#inspect ⇒ Object
150 151 152 |
# File 'lib/extensions/rexml/rexml/validation/validation.rb', line 150 def inspect "#{@event_type.inspect}( #@event_arg )" end |
#matches?(event) ⇒ Boolean
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
# File 'lib/extensions/rexml/rexml/validation/validation.rb', line 96 def matches?( event ) #puts "#@event_type =? #{event[0]} && #@event_arg =? #{event[1]} " return false unless event[0] == @event_type case event[0] when nil return true when :start_element return true if event[1] == @event_arg when :end_element return true when :start_attribute return true if event[1] == @event_arg when :end_attribute return true when :end_document return true when :text return (@event_arg.nil? or @event_arg == event[1]) =begin when :processing_instruction false when :xmldecl false when :start_doctype false when :end_doctype false when :externalentity false when :elementdecl false when :entity false when :attlistdecl false when :notationdecl false when :end_doctype false =end else false end end |
#single? ⇒ Boolean
92 93 94 |
# File 'lib/extensions/rexml/rexml/validation/validation.rb', line 92 def single? return (@event_type != :start_element and @event_type != :start_attribute) end |