class XML::DOM::Notation
begin¶ ↑
Class XML::DOM::Notation¶ ↑
superclass¶ ↑
end¶ ↑
begin¶ ↑
Class XML::DOM::Notation¶ ↑
superclass¶ ↑
end¶ ↑
Public Class Methods
new(name, pubid, sysid)
click to toggle source
begin¶ ↑
Class Methods¶ ↑
Calls superclass method
XML::DOM::Node.new
# File lib/xml/dom/core.rb, line 2854 def initialize(name, pubid, sysid) super() @name = name.freeze @pubid = pubid.freeze @sysid = sysid.freeze end
Public Instance Methods
cloneNode(deep = true)
click to toggle source
begin¶ ↑
Calls superclass method
XML::DOM::Node#cloneNode
# File lib/xml/dom/core.rb, line 2910 def cloneNode(deep = true) super(deep, @name, @pubid, @sysid) end
nodeName()
click to toggle source
nodeType()
click to toggle source
publicId()
click to toggle source