summaryrefslogtreecommitdiff
path: root/doc/forwardable.rd.ja
blob: 171724b2e50d2690549cd07bfc4f51d574852c8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
  -- forwatable.rb
                                                $Release Version: 1.1 $
                                                $Revision$

=begin
= Forwardable

クラスに対しメソッドの委譲機能を定義します.

== 使い方

クラスに対してextendして使います.

  class Foo
    extend Forwardable

    def_delegators("@out", "printf", "print")
    def_delegators(:@in, :gets)
    def_delegator(:@contents, :[], "content_at")
  end
  f = Foo.new
  f.printf ...
  f.gets
  f.content_at(1)

== メソッド

--- Forwardable#def_instance_delegators(accessor, *methods)

      ((|methods|))で渡されたメソッドのリストを((|accessorに|))委譲する
      ようにします.

--- Forwardable#def_instance_delegator(accessor, method, ali = method)

      ((||method|))で渡されたメソッドを((|accessor|))に委譲するようにし
      ます. ((|ali|))が引数として渡されたときは, メソッド((|ali|))が呼ば
      れたときには, ((|accessor|))に対し((|method|))を呼び出します.

--- Forwardable#def_delegators(accessor, *methods)

      ((|Forwardable#def_instance_delegators|))の別名です.

--- Forwardable#def_delegator(accessor, method, ali = method)

      ((|Forwardable#def_instance_delegator|))の別名です.

= SingleForwardable

オブジェクトに対し, メソッドの委譲機能を定義します.

== 使い方

オブジェクトに対して((|extend|))して使います.

  g = Goo.new
  g.extend SingleForwardable
  g.def_delegator("@out", :puts)
  g.puts ...

== メソッド

--- SingleForwardable#def_singleton_delegators(accessor, *methods)

      ((|methods|))で渡されたメソッドのリストを((|accessor|))に委譲する
      ようにします.

--- SingleForwardable#def_singleton_delegator(accessor, method, ali = method)

      ((|method|))で渡されたメソッドを((|accessor|))に委譲するようにしま
      す. ((|ali|))が引数として渡されたときは, メソッド((|ali|))が呼ばれ
      たときには, ((|accessor|))に対し((|method|))を呼び出します.

--- SingleForwardable#def_delegators(accessor, *methods)

      ((|SingleForwardable#def_singleton_delegators|))の別名です.

--- SingleForwardable#def_delegator(accessor, method, ali = method)

      ((|SingleForwardable#def_singleton_delegator|))の別名です.
=end