WrapperFactoryDefault

Default implementation of WrapperFactory .

API

WrapperFactoryDefault.java
class WrapperFactoryDefault {
  void init()
  void close()
  T wrap(T domainObject, SyncControl syncControl)
  T wrapMixin(Class<T> mixinClass, Object mixee, SyncControl syncControl)
  boolean isWrapper(Object obj)
  T unwrap(T t)
  AsyncExecutor asyncExecutor(AsyncControl asyncControl)
  AsyncProxy<T> asyncWrap(T domainObject, AsyncControl asyncControl)
  AsyncProxy<T> asyncWrapMixin(Class<T> mixinClass, Object mixee, AsyncControl asyncControl)
  List<InteractionListener> getListeners()
  boolean addInteractionListener(InteractionListener listener)
  boolean removeInteractionListener(InteractionListener listener)
  void notifyListeners(InteractionEvent interactionEvent)
}