624件ヒット
[1-100件を表示]
(0.049秒)
別のキーワード
種類
- インスタンスメソッド (480)
- 特異メソッド (132)
- クラス (12)
ライブラリ
-
cgi
/ html (252) - openssl (24)
-
rdoc
/ context (12) -
rdoc
/ markup (24) -
rexml
/ document (168) - rss (12)
-
rubygems
/ specification (120) - uri (12)
クラス
-
Gem
:: Specification (120) -
OpenSSL
:: X509 :: Attribute (24) -
RDoc
:: Context (12) -
RDoc
:: Markup (24) -
REXML
:: Attribute (72) -
REXML
:: Attributes (84) -
REXML
:: DocType (12) -
URI
:: LDAP (12)
モジュール
-
CGI
:: HtmlExtension (252)
キーワード
- MissingAttributeError (12)
- [] (12)
-
add
_ to (12) -
array
_ attribute (12) -
array
_ attributes (12) -
attribute
_ alias _ singular (12) -
attribute
_ defaults (12) -
attribute
_ manager (12) -
attribute
_ names (12) -
attribute
_ of (12) - attributes (24)
- checkbox (12)
-
checkbox
_ group (12) -
file
_ field (12) - form (24)
-
get
_ attribute (12) -
get
_ attribute _ ns (12) - hidden (12)
- html (24)
- img (12)
- length (12)
-
multipart
_ form (24) - namespace (12)
- namespaces (12)
- new (12)
- oid (12)
-
password
_ field (12) - prefix (12)
- prefixes (12)
-
radio
_ group (12) -
required
_ attribute (12) -
required
_ attribute? (12) -
required
_ attributes (12) - reset (12)
-
scrolling
_ list (12) - size (12)
- submit (12)
-
text
_ field (12) - textarea (12)
-
to
_ der (12) -
to
_ s (12) -
to
_ string (12) - value (12)
- xpath (12)
検索結果
先頭5件
- Gem
:: Specification . attribute(name) -> () - REXML
:: Attributes # get _ attribute _ ns(namespace , name) -> REXML :: Attribute | nil - REXML
:: Attributes # get _ attribute(name) -> Attribute | nil - RDoc
:: Markup # attribute _ manager -> RDoc :: AttributeManager - Gem
:: Specification . attribute _ alias _ singular(singular , plural) -> ()
-
Gem
:: Specification . attribute(name) -> () (21101.0) -
デフォルト値を指定したアクセサを定義するために使用します。
...フォルト値を指定したアクセサを定義するために使用します。
以下の副作用があります。
* クラス変数 @@attributes, @@default_value を変更します。
* 通常の属性書き込みメソッドを定義します。
* デフォルト値を持つ属性読... -
REXML
:: Attributes # get _ attribute _ ns(namespace , name) -> REXML :: Attribute | nil (15326.0) -
namespace と name で特定される属性を返します。
...e.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_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") # => nil
//}... -
REXML
:: Attributes # get _ attribute(name) -> Attribute | nil (15314.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("......att") # => att='<'
a.attributes.get_attribute("foo:att") # => foo:att='1'
//}... -
RDoc
:: Markup # attribute _ manager -> RDoc :: AttributeManager (12401.0) -
自身の RDoc::AttributeManager オブジェクトを返します。
...自身の RDoc::AttributeManager オブジェクトを返します。... -
Gem
:: Specification . attribute _ alias _ singular(singular , plural) -> () (12307.0) -
既に存在する複数形の属性の単数形バージョンを定義します。
...です。
例:
# このように定義すると
attribute_alias_singular :require_path, :require_paths
# こう書くかわりに
s.require_paths = ['mylib']
# こう書くことができます。
s.require_path = 'mylib'
@param singular 属性名の単数形を指定します。
@pa... -
RSS
:: MissingAttributeError (12000.0) -
-
REXML
:: Attribute # to _ string -> String (9212.0) -
"name='value'" という形式の文字列を返します。
..."name='value'" という形式の文字列を返します。
//emlist[][ruby]{
require 'rexml/document'
e = REXML::Element.new("el")
e.add_attribute("ns:r", "rval")
p e.attributes.get_attribute("r").to_string # => "ns:r='rval'"
//}... -
Gem
:: Specification . attributes(*args) -> () (9200.0) -
複数の属性を一度に作成するために使用します。
...複数の属性を一度に作成するために使用します。
各属性のデフォルト値は nil になります。
@param args 属性名を一つ以上指定します。... -
Gem
:: Specification . array _ attribute(name) -> () (9123.0) -
Gem::Specification.attribute と同じですが、値を配列に格納するアクセサを作ります。
...
Gem::Specification.attribute と同じですが、値を配列に格納するアクセサを作ります。
@param name 属性の名前を指定します。
@see Gem::Specification.attribute...