trait
Proxy extends Any
Abstract Value Members
-
abstract
def
getClass(): Class[_]
-
abstract
def
self: Any
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
def
+(other: String): String
-
def
->[B](y: B): (Proxy, B)
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
ensuring(cond: (Proxy) ⇒ Boolean, msg: ⇒ Any): Proxy
-
-
def
ensuring(cond: Boolean, msg: ⇒ Any): Proxy
-
-
def
equals(that: Any): Boolean
-
def
formatted(fmtstr: String): String
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
def
toString(): String
-
def
→[B](y: B): (Proxy, B)
This class implements a simple proxy that forwards all calls to the public, non-final methods defined in class
Any
to another object self. Those methods are:Note: forwarding methods in this way will most likely create an asymmetric equals method, which is not generally recommended.
1.0, 26/04/2004