1260件ヒット
[1-100件を表示]
(0.028秒)
クラス
-
REXML
:: AttlistDecl (36) -
REXML
:: Attribute (168) -
REXML
:: Attributes (180) -
REXML
:: CData (12) -
REXML
:: Child (36) -
REXML
:: Comment (12) -
REXML
:: Declaration (12) -
REXML
:: DocType (48) -
REXML
:: Document (168) -
REXML
:: Element (192) -
REXML
:: Entity (48) -
REXML
:: ExternalEntity (12) -
REXML
:: Formatters :: Default (12) -
REXML
:: Instruction (84) -
REXML
:: NotationDecl (48) -
REXML
:: Parent (72) -
REXML
:: Text (36) -
REXML
:: XMLDecl (24)
モジュール
-
REXML
:: Namespace (24) -
REXML
:: Node (36)
キーワード
- << (24)
- == (24)
- [] (12)
- []= (12)
- add (24)
-
add
_ attribute (24) -
add
_ attributes (12) -
add
_ namespace (24) - attribute (12)
-
attribute
_ of (12) - attributes (12)
-
attributes
_ of (12) - clone (36)
- content (12)
- content= (12)
- context= (12)
- delete (12)
-
delete
_ all (12) -
delete
_ attribute (12) -
delete
_ if (12) - doctype (12)
- document (24)
- each (36)
-
each
_ attribute (12) -
each
_ child (12) -
each
_ element _ with _ attribute (12) -
each
_ index (12) -
each
_ recursive (12) - element (12)
- element= (12)
- encoding (12)
-
find
_ first _ recursive (12) -
get
_ attribute (12) -
get
_ attribute _ ns (12) -
has
_ attributes? (12) - include? (12)
- instructions (12)
- length (12)
- name (12)
- namespace (12)
- namespaces (12)
-
node
_ type (36) - normalized= (12)
- prefix (12)
- prefix= (12)
- prefixes (12)
-
previous
_ element (12) -
previous
_ sibling (12) -
previous
_ sibling= (12) -
previous
_ sibling _ node (12) - pubid (12)
- public (24)
- public= (12)
- push (12)
- raw= (12)
- remove (12)
- root (12)
-
root
_ node (12) - size (12)
-
stand
_ alone? (12) - standalone= (12)
- string= (12)
- system= (12)
- target (12)
- target= (12)
-
to
_ a (12) -
to
_ s (12) -
to
_ string (12) - unnormalized (12)
- unshift (12)
- value (48)
- value= (12)
- version (12)
- version= (12)
- write (132)
-
xml
_ decl (12) - xpath (12)
検索結果
先頭5件
- REXML
:: Attributes # each _ attribute {|attribute| . . . } -> () - REXML
:: Attributes # get _ attribute(name) -> Attribute | nil - REXML
:: Attributes # get _ attribute _ ns(namespace , name) -> REXML :: Attribute | nil - REXML
:: Child # document -> REXML :: Document | nil - REXML
:: DocType # attribute _ of(element , attribute) -> String | nil
-
REXML
:: Attributes # each _ attribute {|attribute| . . . } -> () (9203.0) -
各属性に対しブロックを呼び出します。
...各属性に対しブロックを呼び出します。
個々の属性は REXML::Attribute オブジェクトで渡されます。
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<root xmlns:foo="http://example.org/foo"
xmlns:bar="http://example.org/bar">
<a fo......o:att='1' bar:att='2' att='<'/>
</root>
EOS
a = doc.get_elements("/root/a").first
a.attributes.each_attribute do |attr|
p [attr.namespace, attr.name, attr.value]
end
# => ["http://example.org/foo", "att", "1"]
# => ["http://example.org/bar", "att", "2"]
# => ["", "att", "<"]
//}... -
REXML
:: Attributes # get _ attribute(name) -> Attribute | nil (9203.0) -
name という名前の属性を取得します。
...Attributes#[]
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<-EOS)
<root xmlns:foo="http://example.org/foo"
xmlns:bar="http://example.org/bar">
<a foo:att='1' bar:att='2' att='<'/>
</root>
EOS
a = doc.get_elements("/root/a").first
a.attributes.get_attribute("at......t") # => att='<'
a.attributes.get_attribute("foo:att") # => foo:att='1'
//}... -
REXML
:: Attributes # get _ attribute _ ns(namespace , name) -> REXML :: Attribute | nil (9203.0) -
namespace と name で特定される属性を返します。
...ことで属性を正しく指定することができます。
@param namespace 名前空間(URI, 文字列)
@param name 属性名(文字列)
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<-EOS)
<root xmlns:foo="http://example.org/foo"
xmlns:bar="http://example.org/......et_elements("/root/a").first
a.attributes.get_attribute_ns("", "att") # => att='<'
a.attributes.get_attribute_ns("http://example.org/foo", "att") # => foo:att='1'
a.attributes.get_attribute_ns("http://example.org/baz", "att") # => nil
a.attributes.get_attribute_ns("http://example.org/foo", "attt... -
REXML
:: Child # document -> REXML :: Document | nil (6203.0) -
そのノードが属する document (REXML::Document) を返します。
...そのノードが属する document (REXML::Document) を返します。
属する document が存在しない場合は nil を返します。... -
REXML
:: DocType # attribute _ of(element , attribute) -> String | nil (6203.0) -
DTD 内の属性リスト宣言で、 element という名前の要素の attribute という 名前の属性のデフォルト値を返します。
...宣言で、 element という名前の要素の attribute という
名前の属性のデフォルト値を返します。
elementという名前の要素の属性値は宣言されていない、
elementという名前の要素にはattributeという名前の属性が宣言されていない、......ram attribute 属性名(文字列)
//emlist[][ruby]{
require 'rexml/document'
doctype = REXML::Document.new(<<EOS).doctype
<!DOCTYPE books [
<!ELEMENT book (comment)>
<!ELEMENT comment (#PCDATA)>
<!ATTLIST book
author CDATA #REQUIRED
title CDATA #REQUIRED
publisher CD......ATA "foobar publisher">
]>
EOS
p doctype.attribute_of("book", "publisher") # => "foobar publisher"
p doctype.attribute_of("bar", "foo") # => nil
p doctype.attribute_of("book", "baz") # => nil
p doctype.attribute_of("book", "title") # => nil
//}... -
REXML
:: DocType # attributes _ of(element) -> [REXML :: Attribute] (6203.0) -
DTD 内の属性リスト宣言で、 element という名前の要素に対し宣言されている 属性の名前とデフォルト値を REXML::Attribute の配列で返します。
...ト値を REXML::Attribute の配列で返します。
名前とデフォルト値のペアは、各 Attribute オブジェクトの
REXML::Attribute#name と
REXML::Attribute#value で表現されます。
//emlist[][ruby]{
require 'rexml/document'
doctype = REXML::Document.new(<<EOS).doctype
<!......author CDATA #REQUIRED
title CDATA #REQUIRED
publisher CDATA "foobar publisher">
]>
EOS
p doctype.attributes_of("book")
# => [author='', title='', publisher='foobar publisher']
p doctype.attributes_of("book")[0].name # => "author"
p doctype.attributes_of("book")[0].value # =... -
REXML
:: Element # attribute(name , namespace = nil) -> REXML :: Attribute | nil (6203.0) -
name で指定される属性を返します。
...ame で指定される属性を返します。
属性は REXML::Attribute オブジェクトの形で返します。
name は "foo:bar" のように prefix を指定することができます。
namespace で名前空間の URI を指定することで、その名前空間内で
name という......前空間のURI(文字列)
//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<-EOS)
<root xmlns:foo="http://example.org/foo"
xmlns:bar="http://example.org/bar">
<a foo:att='1' bar:att='2' att='<'/>
</root>
EOS
a = doc.get_elements("/root/a").first
a.attribute("att") #......=> att='<'
a.attribute("att", "http://example.org/bar") # => bar:att='2'
a.attribute("bar:att") # => bar:att='2'
a.attribute("baz") # => nil
//}... -
REXML
:: Element # attributes -> REXML :: Attributes (6203.0) -
要素が保持している属性の集合を返します。
要素が保持している属性の集合を返します。 -
REXML
:: Element # delete _ attribute(key) -> REXML :: Attribute | nil (6203.0) -
要素から key という属性名の属性を削除します。
...素(文字列(属性名) or REXML::Attributeオブジェクト)
//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("E")
e.add_attribute("x", "foo"); e # => <E x='foo'/>
e.add_attribute("y:x", "bar"); e # => <E x='foo' y:x='bar'/>
e.delete_attribute("x"); e # => <E y:x='bar'/>
//}...