diff options
author | ser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-06-10 02:01:04 +0000 |
---|---|---|
committer | ser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-06-10 02:01:04 +0000 |
commit | a5246fbccaf3a4afd4c9c5982b331b335b69f2ff (patch) | |
tree | 564ff1057a5341fa9b28cf03218851f8d0255f4f /lib/rexml/attribute.rb | |
parent | 35d79021ec3d4692b0178d5fbeb8a4c00bb0c65d (diff) | |
download | ruby-a5246fbccaf3a4afd4c9c5982b331b335b69f2ff.tar.gz ruby-a5246fbccaf3a4afd4c9c5982b331b335b69f2ff.tar.xz ruby-a5246fbccaf3a4afd4c9c5982b331b335b69f2ff.zip |
-
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6441 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rexml/attribute.rb')
-rw-r--r-- | lib/rexml/attribute.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/rexml/attribute.rb b/lib/rexml/attribute.rb index 9eb3c211e..a5a58055b 100644 --- a/lib/rexml/attribute.rb +++ b/lib/rexml/attribute.rb @@ -152,6 +152,12 @@ module REXML write( rv ) rv end + + def xpath + path = @element.xpath + path += "/@#{self.expanded_name}" + return path + end end end #vim:ts=2 sw=2 noexpandtab: |