528件ヒット
[1-100件を表示]
(0.009秒)
クラス
-
REXML
:: AttlistDecl (12) -
REXML
:: Attribute (24) -
REXML
:: Attributes (12) -
REXML
:: CData (12) -
REXML
:: Child (12) -
REXML
:: Comment (24) -
REXML
:: DocType (12) -
REXML
:: Document (72) -
REXML
:: Element (12) -
REXML
:: ElementDecl (12) -
REXML
:: Elements (12) -
REXML
:: Entity (36) -
REXML
:: ExternalEntity (12) -
REXML
:: Formatters :: Default (12) -
REXML
:: Formatters :: Pretty (12) -
REXML
:: Formatters :: Transitive (12) -
REXML
:: Instruction (12) -
REXML
:: NotationDecl (12) -
REXML
:: Parent (12) -
REXML
:: Parsers :: PullParser (12) -
REXML
:: Parsers :: SAX2Parser (12) -
REXML
:: Parsers :: StreamParser (12) -
REXML
:: Parsers :: UltraLightParser (12) -
REXML
:: Text (36) -
REXML
:: XMLDecl (24) -
REXML
:: XPath (36)
モジュール
-
REXML
:: Security (48)
キーワード
- default (12)
- each (12)
-
entity
_ expansion _ limit (24) -
entity
_ expansion _ limit= (24) -
entity
_ expansion _ text _ limit (24) -
entity
_ expansion _ text _ limit= (24) - first (12)
- match (12)
- matches? (12)
- new (336)
- normalize (12)
-
parse
_ stream (12) - unnormalize (12)
検索結果
先頭5件
- REXML
:: AttlistDecl . new(source) -> REXML :: AttlistDecl - REXML
:: Attribute . new(attribute , value , parent = nil) -> REXML :: Attribute - REXML
:: Attribute . new(attribute _ to _ clone , parent = nil) -> REXML :: Attribute - REXML
:: Attributes . new(element) -> REXML :: Attributes - REXML
:: CData . new(text , respect _ whitespace = true , parent = nil) -> REXML :: CData
-
REXML
:: AttlistDecl . new(source) -> REXML :: AttlistDecl (2.0) -
このメソッドは内部用なので使わないでください。
このメソッドは内部用なので使わないでください。 -
REXML
:: Attribute . new(attribute , value , parent = nil) -> REXML :: Attribute (2.0) -
新たな属性オブジェクトを生成します。
...新たな属性オブジェクトを生成します。
2種類の初期化が可能です。
REXML::Attribute オブジェクトを渡した場合は、
属性名とその値がそれから複製されます。
parent で新たに作られる属性オブジェクトが属する
要素が指定で......ソッドは直接は使わず、REXML::Element#add_attribute などを
使うでしょう。
@param attribute_to_clone 複製元の REXML::Attribute オブジェクト
@param attribute 属性名
@param value 属性の値
@param parent 生成される属性が所属する要素(REXML::Element)... -
REXML
:: Attribute . new(attribute _ to _ clone , parent = nil) -> REXML :: Attribute (2.0) -
新たな属性オブジェクトを生成します。
...新たな属性オブジェクトを生成します。
2種類の初期化が可能です。
REXML::Attribute オブジェクトを渡した場合は、
属性名とその値がそれから複製されます。
parent で新たに作られる属性オブジェクトが属する
要素が指定で......ソッドは直接は使わず、REXML::Element#add_attribute などを
使うでしょう。
@param attribute_to_clone 複製元の REXML::Attribute オブジェクト
@param attribute 属性名
@param value 属性の値
@param parent 生成される属性が所属する要素(REXML::Element)... -
REXML
:: Attributes . new(element) -> REXML :: Attributes (2.0) -
空の Attributes オブジェクトを生成します。
...どの要素の属性であるかを element で指定します。
通常は REXML::Element.new によって Attributes オブジェクト
が生成されるため、このメソッドを使う必要はありません。
@param element 属性が属する要素(REXML::Element オブジェクト)... -
REXML
:: CData . new(text , respect _ whitespace = true , parent = nil) -> REXML :: CData (2.0) -
text をテキストとして持つ CData オブジェクトを生成します。
...uire 'rexml/document'
doc = REXML::Document.new(<<EOS)
<root />
EOS
doc.root.add(REXML::CData.new("foo bar baz "))
doc.to_s # => "<root><![CDATA[foo bar baz ]]></root>\n"
doc = REXML::Document.new(<<EOS)
<root />
EOS
doc.root.add(REXML::CData.new("foo bar baz ", true))
doc.root.add(REXML::CDat... -
REXML
:: Child . new(parent = nil) -> REXML :: Child (2.0) -
REXML::Child オブジェクトを生成します。
...REXML::Child オブジェクトを生成します。
parent で親ノードを指定します。
親ノードへの追加は行わないため、オブジェクト生成後に親に
適切に設定する必要があります。
通常、このメソッドは直接は使いません。継承先の... -
REXML
:: Comment . new(comment , parent = nil) -> REXML :: Comment (2.0) -
Comment オブジェクトを生成します。
...mment オブジェクトを生成します。
引数に REXML::Comment オブジェクトを渡すとその内容が複製されます
(親ノードの情報は複製されません)。
@param string コメント文字列
@param comment REXML::Comment オブジェクト
@param parent 親ノード... -
REXML
:: Comment . new(string , parent = nil) -> REXML :: Comment (2.0) -
Comment オブジェクトを生成します。
...mment オブジェクトを生成します。
引数に REXML::Comment オブジェクトを渡すとその内容が複製されます
(親ノードの情報は複製されません)。
@param string コメント文字列
@param comment REXML::Comment オブジェクト
@param parent 親ノード... -
REXML
:: DocType . new(source , parent = nil) -> REXML :: DocType (2.0) -
DocType オブジェクトを生成します。
...オブジェクトを生成します。
REXML::Source オブジェクトの場合は、Source オブジェクトが
保持しているDTDのテキストがパースされ、その内容によって DocType
オブジェクトが初期化されます。
REXML::DocType.new(Source.new(<<EOS))
<!DO......スもありますが、内部用なので使わないで
ください。
一般的にいって、XML 文書に含まれる DTD は REXML::Document.new などで
適切に解析され、REXML::Document#doctype で取得できます。
このメソッドを直接使う必要はありません。...