in scala
trait Proxy

trait Proxy()
extends Object
with ScalaObject
Implementing classes or objects:
trait IterableProxy[+A]()
trait BufferProxy[A]() in scala/collection/mutable

This class implements a simple proxy that forwards all calls to methods of class Any to another object self. 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
abstract def self: Any
override def toString(): String

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

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

Methods inherited from scala/ScalaObject-class
getScalaType

Method Detail

self

  abstract def self: Any

hashCode

  override def hashCode(): Int

equals

  override def equals(y: Any): Boolean

toString

  override def toString(): String