summaryrefslogtreecommitdiff
path: root/lib/rexml/validation
diff options
context:
space:
mode:
authorser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-12 12:08:52 +0000
committerser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-08-12 12:08:52 +0000
commit69e5c7d29797fe085d0ae919ebadc80a69f0f331 (patch)
tree8c1af789ecbdd10533ff280b1f686bd89df2999d /lib/rexml/validation
parent1b12d598f8f6ed6cde7122e9f8b50238d19e5cf0 (diff)
* Fixed the inheritance bug in the pull parser that James Britt found.
* Indentation changes, and changed some exceptions to runtime exceptions. * Backed out the patch that changed the versions * Wasn't including Text class. * Fixes issue:25 (Trac) * Fixes ticket:3 (Issue38 in Roundup.) * Numerous fixes in the XPath interpreter correcting, among other things, ordering bugs and some incorrect behavior. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8973 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rexml/validation')
-rw-r--r--lib/rexml/validation/validation.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/rexml/validation/validation.rb b/lib/rexml/validation/validation.rb
index fbee315f0b..160ea96b31 100644
--- a/lib/rexml/validation/validation.rb
+++ b/lib/rexml/validation/validation.rb
@@ -82,10 +82,13 @@ module REXML
@event_arg = event_arg
end
- attr_reader :done?
attr_reader :event_type
attr_accessor :event_arg
+ def done?
+ @done
+ end
+
def single?
return (@event_type != :start_element and @event_type != :start_attribute)
end