Package de.intarsys.tools.facade
Class Facade
- java.lang.Object
-
- de.intarsys.tools.facade.Facade
-
- All Implemented Interfaces:
IFacade
- Direct Known Subclasses:
AbstractEventFacade
public abstract class Facade extends java.lang.Object implements IFacade
A common superclass for implementaing the facade pattern.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Object
object
-
Constructor Summary
Constructors Constructor Description Facade(java.lang.Object object)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.Object
createFacade(java.lang.Object impl)
java.lang.Object
getImpl()
The implementation behind the facade.
-
-
-
Method Detail
-
getImpl
public java.lang.Object getImpl()
Description copied from interface:IFacade
The implementation behind the facade.
-
createFacade
protected java.lang.Object createFacade(java.lang.Object impl)
-
-