48件ヒット
[1-48件を表示]
(0.076秒)
種類
- インスタンスメソッド (36)
- 特異メソッド (12)
ライブラリ
-
rexml
/ document (48)
検索結果
先頭4件
-
REXML
:: Instruction # target -> String (6101.0) -
XML 処理命令のターゲットを返します。
...quire 'rexml/document'
doc = REXML::Document.new(<<EOS)
<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/css" href="style.css"?>
<root />
EOS
doc[2] # => <?p-i xml-stylesheet ...?>
doc[2].target # => "xml-stylesheet"
doc[2].content # => "type=\"text/css\" href=\"style.css\""
//}... -
REXML
:: Instruction # target=(value) (6101.0) -
XML 処理命令のターゲットを value に変更します。
...XML 処理命令のターゲットを value に変更します。
@param value 新たなターゲット(文字列)... -
REXML
:: Instruction # content=(value) (101.0) -
XML 処理命令の内容を変更します。
...XML 処理命令の内容を変更します。
@param value 新たなデータ(文字列)... -
REXML
:: Instruction . new(target , content = nil) -> REXML :: Instruction (101.0) -
新たな Instruction オブジェクトを生成します。
...新たな Instruction オブジェクトを生成します。
@param target ターゲット
@param content 内容...