るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.056秒)
トップページ > 種類:クラス[x] > クエリ:NotationDecl[x]

別のキーワード

  1. rexml notationdecl
  2. notationdecl new
  3. notationdecl name
  4. notationdecl to_s
  5. notationdecl write

ライブラリ

検索結果

REXML::NotationDecl (18001.0)

DTD の記法宣言を表すクラスです。

DTD の記法宣言を表すクラスです。


//emlist[][ruby]{
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">...

REXML::DocType (7.0)

XML の DTD(文書型定義、Document Type Definition)を表すクラスです。

...マの定義や検証をしたい場合は
XML schema や RELAX NG などを使ってください。

子ノード(REXML::Parent#children)として、
* REXML::ElementDecl
* REXML::ExternalEntity
* REXML::Entity
* REXML::NotationDecl
* REXML::AttlistDecl
などを保持しています。...