420件ヒット
[1-100件を表示]
(0.028秒)
別のキーワード
クラス
-
REXML
:: Attribute (168) -
REXML
:: Attributes (180) -
REXML
:: DocType (12) -
REXML
:: Element (60)
キーワード
- << (12)
- == (12)
- [] (12)
- []= (12)
- add (12)
-
add
_ attribute (24) - attribute (12)
- attributes (12)
-
attributes
_ of (12) - clone (12)
- delete (12)
-
delete
_ all (12) -
delete
_ attribute (12) - each (12)
-
each
_ attribute (12) - element (12)
- element= (12)
-
get
_ attribute (12) -
get
_ attribute _ ns (12) - length (12)
- namespace (12)
- namespaces (12)
-
node
_ type (12) - normalized= (12)
- prefix (12)
- prefixes (12)
- remove (12)
- size (12)
-
to
_ a (12) -
to
_ s (12) -
to
_ string (12) - value (12)
- write (12)
- xpath (12)
検索結果
先頭5件
-
REXML
:: Attribute # prefix -> String (21009.0) -
属性の名前空間を返します。
...st[][ruby]{
require 'rexml/document'
e = REXML::Element.new( "elns:myelement" )
e.add_attribute( "nsa:a", "aval" )
e.add_attribute( "b", "bval" )
p e.attributes.get_attribute( "a" ).prefix # -> "nsa"
p e.attributes.get_attribute( "b" ).prefix # -> "elns"
a = REXML::Attribute.new( "x", "y" )
p a.... -
REXML
:: Attribute # ==(other) -> bool (21003.0) -
属性の名前と値が other と一致する場合に真を返します。
属性の名前と値が other と一致する場合に真を返します。 -
REXML
:: Attribute # clone -> REXML :: Element (21003.0) -
self を複製し返します。
self を複製し返します。 -
REXML
:: Attribute # element -> REXML :: Element (21003.0) -
その属性が属する要素を返します。
その属性が属する要素を返します。 -
REXML
:: Attribute # element=(element) (21003.0) -
self が属する要素を変更します。
self が属する要素を変更します。
@param element 変更先の要素(REXML::Element) -
REXML
:: Attribute # namespace(arg = nil) -> String | nil (21003.0) -
属性の名前空間の URI を返します。
...間でなく、arg という名前空間
の URI が返されます。
通常は省略します。
//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("el")
e.add_attribute("xmlns:ns", "http://www.example.com/ns")
e.add_attribute("ns:r", "rval")
p e.attributes.get_attrib... -
REXML
:: Attribute # node _ type -> Symbol (21003.0) -
「:attribute」というシンボルを返します。
「:attribute」というシンボルを返します。 -
REXML
:: Attribute # normalized=(value) (21003.0) -
正規化された属性値を設定します。
正規化された属性値を設定します。
通常はライブラリが自動的にこの値を設定するので
ユーザはこれを使う必要はないでしょう。
@param value 正規化された属性値 -
REXML
:: Attribute # remove -> () (21003.0) -
self を所属する要素から取り除きます。
self を所属する要素から取り除きます。