notations()
public
This method returns a list of notations that have been declared
in the internal DTD subset.
Notations in the external DTD subset are not
listed.
Method contributed by Henrik Martensson
# File lib/rexml/doctype.rb, line 173
def notations
children().select {|node| node.kind_of?(REXML::NotationDecl)}
end