FileDocCategorySizeDatePackage
SomeClassProxy.javaAPI DocExample1311Sun Dec 14 22:47:40 GMT 2003oreilly.hcj.proxies

SomeClassProxy

public class SomeClassProxy extends Object implements SomeClass
A simple proxy to SomeClass.
author
Robert Simmons jr. (kraythe)
version
$Revision: 1.2 $

Fields Summary
private final SomeClassImpl
impl
The impl object for this proxy.
Constructors Summary
public SomeClassProxy(SomeClassImpl impl)
Creates a new SomeClassProxy object.

param
impl The implementation object for this proxy.

		this.impl = impl;
	
Methods Summary
public voidsomeMethod()

see
oreilly.hcj.proxies.SomeClass#someMethod()

		this.impl.someMethod();
	
public voidsomeOtherMethod(java.lang.String text)

see
oreilly.hcj.proxies.SomeClass#someOtherMethod(java.lang.String)

		this.impl.someOtherMethod(text);