108件ヒット
[101-108件を表示]
(0.111秒)
別のキーワード
ライブラリ
- openssl (24)
-
rdoc
/ context (24) -
rexml
/ document (60)
クラス
-
OpenSSL
:: X509 :: Request (24) -
RDoc
:: Context (24) -
REXML
:: Attribute (12) -
REXML
:: Element (48)
キーワード
-
add
_ attributes (12) -
add
_ to (12) - attributes= (12)
-
delete
_ attribute (12) - namespace (12)
検索結果
-
REXML
:: Attribute # namespace(arg = nil) -> String | nil (3119.0) -
属性の名前空間の URI を返します。
...す。
@param arg この値を指定すると、その属性の名前空間でなく、arg という名前空間
の URI が返されます。
通常は省略します。
//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("el")
e.add_attribute("xmlns:ns", "http://www.e......xample.com/ns")
e.add_attribute("ns:r", "rval")
p e.attributes.get_attribute("r").prefix # => "ns"
p e.attributes.get_attribute("r").namespace # => "http://www.example.com/ns"
//}...