264件ヒット
[1-100件を表示]
(0.023秒)
種類
- インスタンスメソッド (228)
- 特異メソッド (24)
- クラス (12)
クラス
-
REXML
:: Comment (108) -
REXML
:: DocType (36) -
REXML
:: Element (12) -
REXML
:: Parsers :: PullEvent (12) -
REXML
:: Parsers :: SAX2Parser (60)
モジュール
-
REXML
:: SAX2Listener (12) -
REXML
:: StreamListener (12)
検索結果
先頭5件
-
REXML
:: SAX2Listener # comment(comment) -> () (18209.0) -
XML文書内のコメントに出会ったときに呼び出されるコールバックメソッドです。
...XML文書内のコメントに出会ったときに呼び出されるコールバックメソッドです。
@param comment コメントの内容が文字列で渡されます... -
REXML
:: StreamListener # comment(comment) -> () (18209.0) -
XML文書内のコメントをパースしたときに呼び出されるコールバックメソッドです。
...XML文書内のコメントをパースしたときに呼び出されるコールバックメソッドです。
@param comment コメントの内容が文字列で渡されます... -
REXML
:: Element # comments -> [REXML :: Comments] (6217.0) -
すべての comment 子ノードの配列を返します。
...すべての comment 子ノードの配列を返します。
返される配列は freeze されます。... -
REXML
:: Parsers :: PullEvent # comment? -> bool (6102.0) -
コメントノードなら真を返します。
コメントノードなら真を返します。 -
REXML
:: Comment (6001.0) -
XML コメントを表すクラス。
...XML コメントを表すクラス。
コメントとは <!-- と --> で挟まれたテキストです。
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<!-- xx -->
<root>
<!-- yy -->
text
<!-- zz -->
</root>
EOS
doc[0].string # => " xx "
doc.root[1].string # => " yy... -
REXML
:: Comment . new(comment , parent = nil) -> REXML :: Comment (3238.0) -
Comment オブジェクトを生成します。
...
Comment オブジェクトを生成します。
引数に REXML::Comment オブジェクトを渡すとその内容が複製されます
(親ノードの情報は複製されません)。
@param string コメント文字列
@param comment REXML::Comment オブジェクト
@param parent 親ノー... -
REXML
:: Comment . new(string , parent = nil) -> REXML :: Comment (3138.0) -
Comment オブジェクトを生成します。
...
Comment オブジェクトを生成します。
引数に REXML::Comment オブジェクトを渡すとその内容が複製されます
(親ノードの情報は複製されません)。
@param string コメント文字列
@param comment REXML::Comment オブジェクト
@param parent 親ノー... -
REXML
:: Comment # clone -> REXML :: Comment (3118.0) -
内容が複製された Comment オブジェクトを返します。 (親ノードの情報は複製されません)。
...内容が複製された Comment オブジェクトを返します。
(親ノードの情報は複製されません)。... -
REXML
:: Comment # <=>(other) -> -1 | 0 | 1 (3017.0) -
other と内容(REXML::Comment#string)を比較します。
...other と内容(REXML::Comment#string)を比較します。...