588件ヒット
[1-100件を表示]
(0.031秒)
別のキーワード
クラス
-
REXML
:: AttlistDecl (12) -
REXML
:: Attribute (12) -
REXML
:: Child (24) -
REXML
:: Declaration (24) -
REXML
:: DocType (36) -
REXML
:: Document (36) -
REXML
:: Element (36) -
REXML
:: Entity (12) -
REXML
:: ExternalEntity (12) -
REXML
:: Formatters :: Default (12) -
REXML
:: Instruction (84) -
REXML
:: NotationDecl (84) -
REXML
:: ParseException (48) -
REXML
:: Parsers :: PullEvent (24) -
REXML
:: XMLDecl (36)
モジュール
-
REXML
:: Node (12) -
REXML
:: SAX2Listener (48) -
REXML
:: StreamListener (36)
キーワード
- == (12)
- clone (12)
- content (12)
- content= (12)
- context (12)
- instruction (12)
- instruction? (12)
- instructions (12)
- line (12)
- name (12)
-
node
_ type (12) - notation (12)
- notationdecl (24)
- notationdecl? (12)
- notations (12)
- position (12)
-
previous
_ element (12) -
previous
_ sibling (12) -
previous
_ sibling= (12) -
previous
_ sibling _ node (12) -
processing
_ instruction (12) - progress (12)
- public (12)
- public= (12)
- system (12)
- system= (12)
- target (12)
- target= (12)
-
to
_ s (36) - version (24)
- version= (12)
- write (132)
- xmldecl (36)
検索結果
先頭5件
-
REXML
:: ParseException # position -> Integer (9103.0) -
パースエラーが起きた(XML上の)場所を先頭からのバイト数で返します。
パースエラーが起きた(XML上の)場所を先頭からのバイト数で返します。 -
REXML
:: DocType # notation(name) -> REXML :: NotationDecl | nil (6202.0) -
DTD に含まれている記法宣言 (REXML::NotationDecl) で name という名前を持つものを返します。
...DTD に含まれている記法宣言 (REXML::NotationDecl) で
name という名前を持つものを返します。
name という名前を持つ記法宣言が存在しない場合は nil を返します。
@param name 検索する記法名... -
REXML
:: DocType # notations -> [REXML :: NotationDecl] (6202.0) -
DTD に含まれている記法宣言 (REXML::NotationDecl) を 配列で返します。
...DTD に含まれている記法宣言 (REXML::NotationDecl) を
配列で返します。... -
REXML
:: Element # instructions -> [REXML :: Instraction] (6202.0) -
すべての instruction 子ノードの配列を返します。
...すべての instruction 子ノードの配列を返します。
返される配列は freeze されます。... -
REXML
:: StreamListener # instruction(name , instruction) -> () (6202.0) -
XML処理命令(PI)をパースしたときに呼び出されるコールバックメソッドです。
...ーゲット名が文字列で渡されます
@param instruction 処理命令の内容が文字列で渡されます
=== 例
<?xml-stylesheet type="text/css" href="style.css"?>
というPIに対し
name: "xml-stylesheet"
instruction: " type=\"text/css\" href=\"style.css\""
という引数が... -
REXML
:: Child # previous _ sibling -> REXML :: Node (6102.0) -
前の隣接ノードを返します。
...前の隣接ノードを返します。
REXML::Node#previous_sibling_node の別名です。
@see REXML::Child#previous_sibling=... -
REXML
:: Child # previous _ sibling=(other) (6102.0) -
other を self の前の隣接ノードとします。
...other を挿入します。
@param other 挿入するノード
//emlist[][ruby]{
require 'rexml/document'
a = REXML::Element.new("a")
b = a.add_element("b")
c = REXML::Element.new("c")
b.next_sibling = c
d = REXML::Element.new("d")
b.previous_sibling = d
p a.to_s # => "<a><d/><b/><c/></a>"
//}... -
REXML
:: Document # version -> String (6102.0) -
XML 宣言に含まれている XML 文書のバージョンを返します。
...XML 宣言を持たない場合はデフォルトの値
(REXML::XMLDecl.defaultで宣言されているもの)を返します。
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<e />
EOS
doc.version # => "1.0"
//}... -
REXML
:: Element # previous _ element -> Element | nil (6102.0) -
前の兄弟要素を返します。
前の兄弟要素を返します。
前の要素が存在しない場合は nil を返します。