Method: REXML::StreamListener#attlistdecl
- Defined in:
- lib/rexml/streamlistener.rb
#attlistdecl(element_name, attributes, raw_content) ⇒ Object
If a doctype includes an ATTLIST declaration, it will cause this method to be called. The content is the declaration itself, unparsed. EG, <!ATTLIST el attr CDATA #REQUIRED> will come to this method as “el attr CDATA #REQUIRED”. This is the same for all of the .*decl methods.
50 51 |
# File 'lib/rexml/streamlistener.rb', line 50 def attlistdecl element_name, attributes, raw_content end |