in scala
class Proxy

class Proxy(x: Any)
extends Object
with ScalaObject
Implementing classes or objects:
class IterableProxy[A](x: Iterable[A])
class BufferProxy[A](buf: Buffer[A]) in scala/collection/mutable

This class implements a simple proxy that forwards all calls to methods of class Any to another object x. Please note that only those methods can be forwarded that are overridable and public.
Author:
Matthias Zenger
Version:
1.0, 26/04/2004

Method Summary
override def equals(y: Any): Boolean
override def hashCode(): Int
override def toString(): String

Methods inherited from java/lang/Object-class
clone, eq, finalize, getClass, notify, notifyAll, synchronized, wait, wait, wait

Methods inherited from scala/Any-class
!=, ==, asInstanceOf, isInstanceOf, match

Method Detail

hashCode

  override def hashCode(): Int

equals

  override def equals(y: Any): Boolean

toString

  override def toString(): String