1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
## -*- Ruby -*-
## XML::DOM
## 1998-2001 by yoshidam
##
require 'xml/dom2/node'
module XML
module DOM
=begin
== Class XML::DOM::Notation
=== superclass
Node
=end
class Notation<Node
=begin
=== Class Methods
--- Notation.new(name, pubid, sysid)
creates a new Notation.
=end
def initialize(name, pubid, sysid)
super()
@name = name.freeze
@pubid = pubid.freeze
@sysid = sysid.freeze
end
=begin
=== Methods
--- Notation#nodeType
[DOM]
returns the nodeType.
=end
## [DOM]
def nodeType
NOTATION_NODE
end
=begin
--- Notation#nodeName
[DOM]
returns the nodeName.
=end
## [DOM]
def nodeName
@name
end
=begin
--- Notation#publicId
returns the publicId of the Notation.
=end
def publicId
@pubid
end
=begin
--- Notation#systemId
returns the systemId of the Notation.
=end
def systemId
@sysid
end
=begin
--- Notation#cloneNode(deep = true)
[DOM]
returns the copy of the Notation.
=end
## [DOM]
def cloneNode(deep = true)
super(deep, @name, @pubid, @sysid)
end
end
end
end
|