Module: REXML::Namespace

Includes:
XMLTokens
Included in:
Attribute, Element
Defined in:
lib/rexml/namespace.rb

Overview

Adds named attributes to an object.

Constant Summary collapse

NAMESPLIT =
/^(?:(#{NCNAME_STR}):)?(#{NCNAME_STR})/u

Constants included from XMLTokens

XMLTokens::NAME, XMLTokens::NAMECHAR, XMLTokens::NAME_STR, XMLTokens::NCNAME_STR, XMLTokens::NMTOKEN, XMLTokens::NMTOKENS, XMLTokens::REFERENCE

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#expanded_nameObject (readonly)

The name of the object, valid if set



7
8
9
# File 'lib/rexml/namespace.rb', line 7

def expanded_name
  @expanded_name
end

#nameObject Also known as: local_name

The name of the object, valid if set



7
8
9
# File 'lib/rexml/namespace.rb', line 7

def name
  @name
end

#prefixObject

The expanded name of the object, valid if name is set



9
10
11
# File 'lib/rexml/namespace.rb', line 9

def prefix
  @prefix
end

Instance Method Details

#fully_expanded_nameObject

Fully expand the name, even if the prefix wasn’t specified in the source file.



41
42
43
44
45
# File 'lib/rexml/namespace.rb', line 41

def fully_expanded_name
  ns = prefix
  return "#{ns}:#@name" if ns.size > 0
  return @name
end

#has_name?(other, ns = nil) ⇒ Boolean

Compares names optionally WITH namespaces

Returns:

  • (Boolean)


27
28
29
30
31
32
33
34
35
# File 'lib/rexml/namespace.rb', line 27

def has_name?( other, ns=nil )
  if ns
    return (namespace() == ns and name() == other)
  elsif other.include? ":"
    return fully_expanded_name == other
  else
    return name == other
  end
end