class LibXML::XML::Schema::Namespaces
Public Instance Methods
find_by_href(href)
click to toggle source
# File lib/libxml/schema.rb, line 48 def find_by_href(href) find { |n| n.href == href } end
find_by_prefix(prefix)
click to toggle source
# File lib/libxml/schema.rb, line 52 def find_by_prefix(prefix) find { |n| n.prefix == prefix } end