# File lib/xml/dom/core.rb, line 2855 def initialize(name, pubid, sysid) super() @name = name.freeze @pubid = pubid.freeze @sysid = sysid.freeze end
# File lib/xml/dom/core.rb, line 2911 def cloneNode(deep = true) super(deep, @name, @pubid, @sysid) end
# File lib/xml/dom/core.rb, line 2882 def nodeName @name end
# File lib/xml/dom/core.rb, line 2871 def nodeType NOTATION_NODE end
# File lib/xml/dom/core.rb, line 2891 def publicId @pubid end
# File lib/xml/dom/core.rb, line 2900 def systemId @sysid end