Parent

Nmap::XmlParsing::TagGroup

Now for the actual XML parsing stuff for Nmap::Parser ...

Public Instance Methods

collect_tags(name) click to toggle source
# File lib/nmap/parser.rb, line 1730
def collect_tags(name)
        self.map { |tag| yield tag if match(tag, name) }.compact
end
each_tag(name) click to toggle source
# File lib/nmap/parser.rb, line 1726
def each_tag(name)
        self.each { |tag| yield tag if match(tag, name) }
end
find_tag(name) click to toggle source
# File lib/nmap/parser.rb, line 1734
def find_tag(name)
        self.find { |tag| match(tag, name) }
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.