# File lib/xml/dom/core.rb, line 2854 def initialize(name, pubid, sysid) super() @name = name.freeze @pubid = pubid.freeze @sysid = sysid.freeze end
# File lib/xml/dom/core.rb, line 2910 def cloneNode(deep = true) super(deep, @name, @pubid, @sysid) end
# File lib/xml/dom/core.rb, line 2881 def nodeName @name end
# File lib/xml/dom/core.rb, line 2870 def nodeType NOTATION_NODE end
# File lib/xml/dom/core.rb, line 2890 def publicId @pubid end
# File lib/xml/dom/core.rb, line 2899 def systemId @sysid end