DTD の記法宣言を表すクラスです。
require 'rexml/document'
doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE foo [
<!NOTATION type-image-svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!NOTATION type-image-gif PUBLIC "image/gif">
<!NOTATION foobar SYSTEM "http://example.org/foobar.dtd">
]>
EOS
svg = doctype.notation("type-image-svg")
p svg.name # => "type-image-svg"
p svg.to_s # => "<!NOTATION type-image-svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">"
p svg.public # => "-//W3C//DTD SVG 1.1//EN"
p svg.system # => "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"
gif = doctype.notation("type-image-gif")
p gif.name # => "type-image-gif"
p gif.to_s # => "<!NOTATION type-image-gif PUBLIC \"image/gif\">"
p gif.public # => "image/gif"
p gif.system # => nil
foobar = doctype.notation("foobar")
p foobar.name # => "foobar"
p foobar.to_s # => "<!NOTATION foobar SYSTEM \"http://example.org/foobar.dtd\">"
p foobar.public # => nil
p foobar.system # => "http://example.org/foobar.dtd"
new(name, middle, pub, sys) -> REXML::NotationDecl[permalink][rdoc]NotationDecl オブジェクトを生成します。
name -> String[permalink][rdoc]記法宣言の名前を返します。
public -> String | nil[permalink][rdoc]公開識別子を返します。
宣言が公開識別子を含まない場合は nil を返します。
public=(value)[permalink][rdoc]公開識別子を value に変更します。
system -> String | nil[permalink][rdoc]システム識別子(URI)を返します。
宣言がシステム識別子を含まない場合は nil を返します。
system=(value)[permalink][rdoc]システム識別子を変更します。
to_s -> String[permalink][rdoc]self を文字列化したものを返します。
write(output, indent = -1)[permalink][rdoc]output へ self を文字列化して出力します。
このメソッドは deprecated です。REXML::Formatter で出力してください。