View Javadoc

1   /*
2    * joey and its relative products are published under the terms
3    * of the Apache Software License.
4    * 
5    * Created on 2004/06/17 13:24:00
6    */
7   package org.asyrinx.joey.om;
8   
9   /***
10   * @author akima
11   */
12  public class EntityInitializerWrapper implements EntityInitializer {
13  
14  	/***
15  	 * 
16  	 */
17  	public EntityInitializerWrapper(EntityInitializer wrapped) {
18  		super();
19  		this.wrapped = wrapped;
20  	}
21  
22  	protected EntityInitializer wrapped;
23  
24  	/* (non-Javadoc)
25  	 * @see org.asyrinx.joey.om.EntityInitializer#initialize(java.lang.Object)
26  	 */
27  	public void initialize(Object entity) {
28  		wrapped.initialize(entity);
29  	}
30  
31  }