summaryrefslogtreecommitdiff
path: root/doc/forwardable.rd.jp
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-07-19 05:44:26 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-07-19 05:44:26 +0000
commitf943351e1fc5c09f4e7ec29f7c4f77ca48e6494e (patch)
treeb48557c7ea6d44934fac45cc0f05ed032a3ed11f /doc/forwardable.rd.jp
parent5a5175ca98b114f10e9625a79115b8980073ce7d (diff)
Rename *.jp to *.ja, since jp is a region code and ja is a language
code. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1629 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'doc/forwardable.rd.jp')
-rw-r--r--doc/forwardable.rd.jp81
1 files changed, 0 insertions, 81 deletions
diff --git a/doc/forwardable.rd.jp b/doc/forwardable.rd.jp
deleted file mode 100644
index d928fddc5e..0000000000
--- a/doc/forwardable.rd.jp
+++ /dev/null
@@ -1,81 +0,0 @@
- -- forwatable.rb
- $Release Version: 1.1 $
- $Revision$
- $Date$
-
-=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